….container {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
}

.searchBox {
    position: relative;
    width: 100%;
}

.input {
    width: 100%;
    padding: 0.75rem 1rem;
    padding-right: 2.5rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.spinner {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.results {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 10;
}

.resultItem {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    background: white;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: background 0.2s;
    border-bottom: 1px solid #f1f5f9;
}

.resultItem:last-child {
    border-bottom: none;
}

.resultItem:hover {
    background: #f8fafc;
}

.icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.text {
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.4;
}

.noResults {
    padding: 1rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.error {
    padding: 1rem;
    text-align: center;
    color: #dc2626;
    font-size: 0.9rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    margin-top: 0.5rem;
}°*cascade08°…*cascade082‚file:///c:/Users/Victoria/OneDrive/Escritorio/Proyectos%20Antigravity/Derpa%20Tech/web/src/components/map/AddressSearch.module.css