/* AutoSuggest Container */
div.autosuggest {
    position: absolute;
    z-index: 110;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    font-family: inherit;
}

    /* Suggest List */
    div.autosuggest ul {
        list-style: none;
        margin: 0;
        padding: 0;
        max-height: 300px;
        overflow-y: auto;
    }

        /* Suggest Item */
        div.autosuggest ul li a {
            display: block;
            padding: 12px 20px;
            font-size: 14px;
            color: #333;
            text-decoration: none;
            border-bottom: 1px solid #eee;
            transition: background 0.3s ease;
        }

            /* Hover & Highlight */
            div.autosuggest ul li a:hover,
            div.autosuggest ul li.as_highlight a {
                background-color: #007bff;
                color: #fff;
            }

        /* Highlighted Text */
        div.autosuggest ul em {
            font-style: normal;
            font-weight: bold;
            color: #007bff;
        }

/* Category Label */
.Suggest-Category {
    font-weight: bold;
    background-color: #343a40;
    color: #fff;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 4px;
}

/* Spinner */
.spinner {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 3px solid #ccc;
    border-top: 3px solid #007bff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
