.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    /* background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.5rem;
    box-shadow: 0 0.35rem 0.9rem rgba(20, 25, 35, 0.08); */
    /* max-height: 300px; */
    overflow-y: auto;
    z-index: 10000;
}

.search-loader {
    padding: 1rem;
    text-align: center;
    color: #6c757d;
}

.search-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.search-item:last-child {
    border-bottom: none;
}

.search-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #2b2b2b;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.search-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #2b2b2b;
}

.search-link strong {
    display: block;
    margin-bottom: 0.25rem;
}

.search-link small {
    color: #6c757d;
}


@media screen and (min-width: 768px) {
    #search-results {
        padding: 0 2rem 0 calc(var(--nav-width) + 2rem);
    }
}

#search-results {
    height: 100vh;
    backdrop-filter: brightness(60%) blur(5px);
}

#search-icon {
    background-color: #e8e8e8;
}