/* Masquer les éléments inutiles à l'impression */
button,
#rgpd-popup,
.menu,
footer,
header {
    display: none !important;
}

/* Mise en page A4 propre */
@page {
    size: A4;
    margin: 10mm;
}

/* Corps du document */
body {
    font-family: Arial, sans-serif;
    color: #000;
    margin: 0;
    padding: 0;
}

/* Conteneur principal */
#form-container {
    border: 2px solid #000;
    padding: 15px;
    border-radius: 6px;
    page-break-inside: avoid;
}

/* Empêcher le logo + en-tête d'être séparés */
.print-header {
    page-break-inside: avoid;
    margin-bottom: 10mm;
}

/* Empêcher les coupures dans les sections importantes */
section,
.bloc {
    page-break-inside: avoid;
}

/* Labels lisibles */
label {
    font-weight: bold;
    margin-top: 10px;
    display: block;
}

/* Empêcher les champs longs de déborder */
textarea,
input {
    width: 100%;
    box-sizing: border-box;
}
#details {
    white-space: pre-wrap !important;
    overflow: visible !important;
}
textarea, p {
    page-break-inside: avoid !important;
}
