#autosuggest-search-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    z-index: 9999;
}

#autosuggest-input {
    width: 100%;
    padding: 20px!important;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-family: 'Santoshi';
}

#autosuggest-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    list-style: none;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    font-family: 'Nunito Sans', sans-serif;
    border-radius: 8px;
    z-index: 9999;
}

#autosuggest-results li {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

#autosuggest-results li a {
    text-decoration: none;
    color: #333;
}

#autosuggest-loader {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 3px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}
