/* Global Search Styles */
.global-search-container {
    width: 300px;
}

.global-search-form .input-group {
    border-radius: 20px;
    overflow: hidden;
}

.global-search-form .form-control {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.global-search-form .btn {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

#search-results-dropdown {
    max-height: 400px;
    overflow-y: auto;
    width: 100%;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 0.25rem;
    margin-top: 5px;
}

#search-results-dropdown .dropdown-header {
    font-weight: bold;
    color: #000;
    background-color: #f8f9fa;
    padding: 0.5rem 1rem;
}

#search-results-dropdown .dropdown-item {
    padding: 0.5rem 1rem;
    white-space: normal;
}

#search-results-dropdown .dropdown-item:hover {
    background-color: #f8f9fa;
}

#search-results-dropdown .dropdown-divider {
    margin: 0.5rem 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .global-search-container {
        width: 100%;
        margin: 10px 0;
    }
}