
/* ==================================================== */
/* Stile per la mappa                                   */
/* ==================================================== */

.pd-gismaps-map {
    position: relative;
    margin-bottom: 50px;
}

.pd-extend-map {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2em;
    z-index: 10;
    transition: background 0.3s ease, transform 0.3s ease;
}

.pd-extend-map:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: scale(1.1);
}

.pd-extend-map i {
    pointer-events: none; /* per evitare clic sull'icona */
}