/* MAPPA PERCORSO */
.mappa-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.mappa-btn {
    padding: 8px 16px;
    border: 2px solid #2c3e50;
    background: white;
    color: #2c3e50;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mappa-btn:hover {
    background: #2c3e50;
    color: white;
}

.mappa-btn.active {
    background: #2c3e50;
    color: white;
}

/* Stili per le mappe */
.mappa-embed {
    border: 4px solid #2c3e50;
    border-radius: 12px;
    width: 100%;
    height: 80vh;
    min-height: 400px;
    max-width: 100%;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

.mappa-embed:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.mappa-statica {
    width: 100%;
    height: 80vh;
    min-height: 400px;
    object-fit: cover;
    border: 4px solid #2c3e50;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    display: none;
}
/* END MAPPA PERCORSO */


/* DETTAGLI PERCORSO */
.percorso-toggle {
    margin: 10px 0 5px 0;
}

.percorso-btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    color: #495057;
    transition: all 0.3s ease;
}

.percorso-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.percorso-details {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 15px;
    margin: 10px 0;
    animation: slideDown 0.3s ease;
}

.percorso-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.stat-item {
    padding: 5px 0;
    border-bottom: 1px solid #dee2e6;
}

.difficolta-facile { color: #28a745; }
.difficolta-media { color: #ffc107; }
.difficolta-difficile { color: #dc3545; }

@keyframes slideDown {
    from { opacity: 0; max-height: 0; }
    to { opacity: 1; max-height: 200px; }
}

/* END DETTAGLI PERCORSO */