/* 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%;
    }
}

