body {
    background-color: skyblue;
}

.login-form {
    width: 500px;
}

.btn-block {
    width: 100%;
}

.security-form {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 100vh;
}

.documents {
    display: flex;
    flex-wrap: wrap;
    gap: var(--pico-spacing);
    & article {
        display: grid;
    }
    & img {
        width: 150px;
    }
}

/* ── Badge date sous les marqueurs Leaflet ───────────────────────────────── */
.leaflet-marker-icon {
    /* Permet au badge en absolu d'être positionné par rapport au marqueur */
    overflow: visible !important;
}

.codangui-marker-date {
    position: absolute;
    top: 38px;                /* juste sous le SVG (hauteur 41px - chevauchement 3px) */
    left: 50%;
    transform: translateX(-50%);
    background: #2c3e50;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    padding: 1px 6px;
    border-radius: 10px;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    pointer-events: none;     /* le badge ne bloque pas les clics sur le marqueur */
    letter-spacing: 0.02em;
    line-height: 1.4;
}