/* Search Modal / Overlay Styles */
.search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(39, 49, 46, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.search-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.search-field {
    width: 100%;
    font-size: 2rem;
    border: none;
    background: transparent;
    color: white;
    border-bottom: 2px solid white;
}

.search-results-dropdown {
    position: absolute;
    background: white;
    width: 100%;
    top: 100%;
    display: none;
    padding: 1rem;
}

.search-results-dropdown.active {
    display: block;
}