/* Business Selector Styles */

#businessSelectorDropdown .nav-link {
    background: rgba(49, 178, 224, 0.1);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    min-width: 200px;
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#businessSelectorDropdown .nav-link:hover {
    background: rgba(49, 178, 224, 0.2);
    transform: translateY(-2px);
}

#businessDropdownMenu {
    min-width: 320px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(49, 178, 224, 0.2);
    padding: 0.5rem;
}

#businessDropdownMenu .dropdown-item {
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

#businessDropdownMenu .dropdown-item:hover {
    background: rgba(49, 178, 224, 0.1);
    transform: translateX(5px);
}

#businessDropdownMenu .dropdown-item:last-child {
    margin-bottom: 0;
}

/* Business Context Indicator */
#businessContextIndicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(49, 178, 224, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Dark Mode Support */
body.dark-mode #businessSelectorDropdown .nav-link {
    background: rgba(49, 178, 224, 0.15);
    color: #ffffff;
}

body.dark-mode #businessDropdownMenu {
    background: #2d2d2d;
    border-color: rgba(49, 178, 224, 0.3);
}

body.dark-mode #businessDropdownMenu .dropdown-item {
    color: #ffffff;
}

body.dark-mode #businessDropdownMenu .dropdown-item:hover {
    background: rgba(49, 178, 224, 0.2);
}

body.dark-mode #businessContextIndicator {
    background: rgba(49, 178, 224, 0.2);
    color: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #businessDropdownMenu {
        min-width: 280px;
        max-width: 90vw;
    }

    #businessSelectorDropdown .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}
