/* Warehouse Stock Display Styles */
.warehouse-stock-block {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.warehouse-stock-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 12px;
    color: #333;
}

.warehouse-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.warehouse-item:last-child {
    border-bottom: none;
}

.warehouse-name {
    font-weight: 500;
    color: #495057;
}

.warehouse-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stock-indicator {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.stock-high {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.stock-medium {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.stock-low {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.stock-out {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.delivery-time {
    font-size: 12px;
    color: #6c757d;
    font-style: italic;
}

.pickup-info {
    margin-top: 15px;
    padding: 10px;
    background: #e7f3ff;
    border-radius: 6px;
    border-left: 4px solid #007bff;
}

.pickup-title {
    font-weight: bold;
    color: #007bff;
    margin-bottom: 5px;
}

.pickup-available {
    color: #28a745;
    font-weight: 500;
}

.pickup-unavailable {
    color: #dc3545;
    font-weight: 500;
}

.warehouse-stock-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}

.warehouse-stock-compact .warehouse-item {
    flex: 1;
    min-width: 200px;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    margin: 0;
}

.total-stock-info {
    margin-top: 10px;
    padding: 8px 12px;
    background: #f1f3f4;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .warehouse-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .warehouse-status {
        width: 100%;
        justify-content: space-between;
    }
    
    .warehouse-stock-compact .warehouse-item {
        min-width: 100%;
    }
}
