.search-box-container {
    display: flex;
    align-items: center;
}

.search-results {
    position: absolute;
    z-index: 1000;
    padding: 0;
    margin-top: 5px;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    left: 0;
}

.search-results .dropdown-header {
    color: #1ab394;
    font-weight: bold;
    padding: 8px 16px;
    background-color: #f8f9fa;
}

.search-results .dropdown-item {
    padding: 8px 16px;
    white-space: normal;
}

.search-results .dropdown-item:hover {
    background-color: #f8f9fa;
}

.search-results .dropdown-divider {
    margin: 0;
}

.search-results .text-muted {
    font-size: 0.85rem;
}

#globalSearch {
    border-radius: 20px;
    transition: width 0.3s ease;
}

#globalSearch:focus {
    width: 300px;
    box-shadow: 0 0 0 0.2rem rgba(26, 179, 148, 0.25);
} 