.sla-autocomplete-results {
    position: absolute;
    z-index: 9999;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    list-style: none;
    margin: 4px 0 0 0;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.autocomplete-item {
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
    font-size: 15px;
    color: #1f2937;
    transition: background-color 0.15s ease;
}

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

.autocomplete-item:hover {
    background-color: #f9fafb;
}

.no-results,
.error-message {
    padding: 16px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

.error-message {
    color: #dc2626;
}

.sla-autocomplete-spinner {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: #6b7280;
    z-index: 10;
}

@media (min-width: 769px) {
    .sla-autocomplete-results {
        border-radius: 12px;
        max-height: 300px;
    }

    .autocomplete-item {
        padding: 12px 16px;
        font-size: 16px;
    }

    .sla-autocomplete-spinner {
        font-size: 14px;
    }
}
