.palu-shop-admin-wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.palu-inventory-search {
    position: relative;
}

.palu-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.palu-tab {
    padding: 10px 20px;
    border: none;
    background: #f2f2f2;
    cursor: pointer;
    border-radius: 6px;
}

.palu-tab.active {
    background: #0073aa;
    color: #fff;
}

.palu-product-table {
    width: 100%;
    border-collapse: collapse;
}

.palu-product-table th,
.palu-product-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.palu-success {
    color: green;
    margin-top: 10px;
}

.palu-autocomplete-box {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: none;
    z-index: 9999;
    max-height: 250px;
    overflow-y: auto;
}

.palu-autocomplete-item {
    padding: 10px 12px;
    cursor: pointer;
    font-size: 14px;
}

.palu-autocomplete-item:hover {
    background: #f5f5f5;
}