/* Restaurant selector styling */
.restaurant-selector {
    display: flex;
    align-items: center;
    background-color: rgba(40, 167, 69, 0.08);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(40, 167, 69, 0.15);
}

.restaurant-selector label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0;
    white-space: nowrap;
}

.restaurant-selector .form-select {
    background-color: #fff;
    border-color: rgba(40, 167, 69, 0.2);
    min-width: 120px;
    max-width: 200px;
    transition: all 0.2s ease;
    margin-right: 0.5rem;
}

.restaurant-selector .form-select:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.restaurant-selector .btn-outline-primary {
    border-color: #28a745;
    color: #28a745;
    background-color: white;
    padding: 0.35rem 0.5rem;
    line-height: 1;
}

.restaurant-selector .btn-outline-primary:hover {
    background-color: #28a745;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .restaurant-selector {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .restaurant-selector label {
        margin-bottom: 0.25rem;
    }
    
    .restaurant-selector .form-select {
        width: 100%;
        margin-bottom: 0.25rem;
        max-width: 100%;
    }
}