.search-results-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #f8f9fa;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    max-height: 500px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 5px;
}

.search-results-container {
    padding: 10px;
}

.search-results-group {
    margin-bottom: 15px;
}

.search-results-header {
    font-weight: bold;
    color: #007bff;
    padding: 8px 10px;
    margin-bottom: 5px;
}

.mega-dropdown .dropdown-menu { transition: opacity .12s ease; }

.search-result-item {
    margin-bottom: 10px;
    transition: all 0.2s ease;
    background: white;
    border-radius: 4px;
    overflow: hidden;
}

.search-result-item:hover {
    transform: translateX(2px);
}

.mark {
    background-color: #fff3cd !important;
    color: #856404;
    padding: 0.1em 0.2em;
    border-radius: 2px;
    font-weight: bold;
}

.search-results-summary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.badge {
    font-size: 0.7em;
    vertical-align: middle;
}

.btn-outline-light {
    border-color: white;
    color: white;
    padding: 0.15rem 0.5rem;
}

.btn-outline-light:hover {
    background-color: white;
    color: #667eea;
}

.input-group {
    position: relative;
}

.dropdown-menu {
    width: 600px; 
}

/* On smaller devices, force full width */
@media (max-width: 768px) {
    .mega-dropdown-menu {
        max-width: 100%;
        left: 0;
        right: 0;
    }
}