/* Optimisé pour performance (GPU acceleration) */
.address-suggestions {
    transform: translateZ(0);
    will-change: transform;
    margin-top: 2px;
    border-radius: 0.375rem;
    background: white;
}

    .address-suggestions .list-group-item:hover {
        background-color: #f8f9fa;
        transform: translateX(2px);
        transition: all 0.15s ease;
    }

    .address-suggestions .list-group-item:active {
        background-color: #e9ecef;
    }
