.fortune-autocomplete {
    position: relative;
    width: 100%;
    margin-top: 8px;
    z-index: 20;
}

.fortune-autocomplete .autocomplete-list {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
}

.fortune-autocomplete--open .autocomplete-loading {
    padding: 10px 0;
}

/* Autocomplete list. */
.autocomplete-list {
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background: var(--glass-bg);
    border: 2px solid rgba(255, 108, 66, 0.3);
    border-radius: var(--border-radius-small);
}

.autocomplete-option {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.autocomplete-option:last-child {
    border-bottom: none;
}

.autocomplete-option:hover {
    background: rgba(255, 108, 66, 0.2);
}

@keyframes ratingGlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

