/* Warehouse Inventory Table Styles */
.warehouse-inventory-section {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    margin-top: 24px;
}

.warehouse-inventory-section h3 {
    font-size: 19px;
    font-weight: 700;
    color: black;
    margin-bottom: 15px;
}

.warehouse-inventory-section table {
    width: 100%;
}

.warehouse-inventory-section table thead th {
    background-color: #fff;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #ddd;
    font-size: 14px;
}

.warehouse-inventory-section table tbody td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #555;
}

.warehouse-inventory-section table tbody tr:hover {
    background-color: #fafafa;
}

.warehouse-inventory-section .quantity-available {
    font-weight: 600;
    color: #27ae60;
}

.warehouse-inventory-section .quantity-unavailable {
    font-weight: 600;
    color: #e74c3c;
}

.warehouse-inventory-section p {
    margin-top: 15px;
    font-size: 14px;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .warehouse-inventory-section {
        padding: 15px;
    }

    .warehouse-inventory-section table thead th,
    .warehouse-inventory-section table tbody td {
        padding: 8px;
        font-size: 12px;
    }
}

