/* Estilos para autocompletar */
.pwt-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 0 0 4px 4px;
}

.pwt-suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.pwt-suggestion-item:hover {
    background-color: #f5f5f5;
}

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

.pwt-suggestion-loading {
    padding: 10px 15px;
    color: #999;
    font-style: italic;
}

/* Input con sugerencias */
input[data-autocomplete] {
    position: relative;
}
