
button.search-result-btn {
    width: 100%;
    text-align: left;
    padding: 4px 8px;
    border: none;
    border-radius: 4px;
    background: none;
    font-size: 14px;
    color: #222222;

    & > small {
        color: #666666;
    }

    &:hover, &:focus-visible {
        background-color: rgba(72, 165, 255, 0.8);
        outline: none;
    }
}

div.search-results {
    position: absolute;
    z-index: 100;
    min-height: 1px;
    width: calc(100% - 30px);
    background: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid lightgrey;
    border-radius: 8px;
    padding: 5px;
}