
/* On s’assure qu’il n’y ait pas de marge par défaut */
html,
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #f8f9fa;
    /* ou la couleur de fond de ton main */
}

/* Style du footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copy {
    font-size: 0.9rem;
}

.footer-links .footer-link {
    position: relative;
    padding-bottom: 2px;
    transition: color 0.2s;
}

.footer-links .footer-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s;
}

.footer-links .footer-link:hover {
    color: #ffc107;
    /* couleur accent sur hover */
}

.footer-links .footer-link:hover::after {
    transform: scaleX(1);
}

/* Style personnalisé pour la popup des stations */
.leaflet-popup-content-wrapper {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.leaflet-popup-content {
    margin: 0;
    padding: 12px 16px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
}

.station-popup h4 {
    margin: 0 0 8px;
    font-size: 1.1em;
    color: #005f73;
}

.station-popup .address {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 12px;
}

.station-popup .section-title {
    font-weight: bold;
    margin: 8px 0 4px;
    font-size: 0.95em;
    color: #0a9396;
}

.station-popup ul {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
}

.station-popup li {
    font-size: 0.9em;
    margin: 4px 0;
    position: relative;
    padding-left: 20px;
}

.station-popup li:before {
    content: '\f111';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 8px;
    color: #0a9396;
}