/* Container principale autocomplete */
.autocomplete-container {
    position: relative;
    width: 100%;
}

/* Input field */
.autocomplete-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #d32f2f; /* Rosso KeNoleggio */
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s ease;
    background: white;
    color:black;
}

.autocomplete-input:focus {
    border-color: #b71c1c;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

/* Dropdown risultati */
.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 4px;
    display: none;
}

.autocomplete-dropdown.active {
    display: block;
}

/* Lista risultati */
.autocomplete-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

/* Singolo item risultato - LAYOUT 2 RIGHE */
.autocomplete-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.15s ease;
    border-bottom: 1px solid #f5f5f5;
}

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

.autocomplete-item:hover,
.autocomplete-item.selected {
    background-color: #f5f5f5;
}

/* Icona località - FLAT MONOCROMATICA */
.autocomplete-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5; /* Grigio chiaro uniforme */
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    color: #424242; /* Grigio scuro per tutte le icone */
}

.autocomplete-icon svg {
    width: 20px;
    height: 20px;
}

/* Contenuto testo (2 righe) */
.autocomplete-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* Titolo principale (nome località) */
.autocomplete-title {
    font-size: 15px;
    font-weight: 600;
    color: #212121;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Sottotitolo (città, regione) */
.autocomplete-subtitle {
    font-size: 13px;
    color: #757575;
    margin: 2px 0 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Messaggio "Nessun risultato" */
.autocomplete-no-results {
    padding: 20px;
    text-align: center;
    color: #757575;
    font-size: 14px;
}

/* Loading spinner */
.autocomplete-loading {
    padding: 20px;
    text-align: center;
    color: #757575;
    font-size: 14px;
}

.autocomplete-loading::after {
    content: "...";
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0%, 20% { content: "."; }
    40% { content: ".."; }
    60%, 100% { content: "..."; }
}

/* Scrollbar personalizzata */
.autocomplete-dropdown::-webkit-scrollbar {
    width: 8px;
}

.autocomplete-dropdown::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.autocomplete-dropdown::-webkit-scrollbar-thumb {
    background: #bdbdbd;
    border-radius: 4px;
}

.autocomplete-dropdown::-webkit-scrollbar-thumb:hover {
    background: #9e9e9e;
}

/* Responsive */
@media (max-width: 768px) {
    .autocomplete-item {
        padding: 10px 12px;
    }

    .autocomplete-icon {
        width: 36px;
        height: 36px;
    }

    .autocomplete-icon svg {
        width: 18px;
        height: 18px;
    }

    .autocomplete-title {
        font-size: 14px;
    }

    .autocomplete-subtitle {
        font-size: 12px;
    }
}