/* ------------------------------
   PAGE LEÇON – STYLE GLOBAL
------------------------------ */

.lesson-content {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* ------------------------------
   SCORM – MODE NORMAL
------------------------------ */

#scorm-wrapper {
    width: 100%;
    height: calc(100vh - 140px); /* hauteur dynamique */
    overflow: hidden;            /* évite les scrollbars internes */
    margin: 0;
    padding: 0;
}

#scorm-frame {
    width: 100%;   /* important : pas de 100vw */
    height: 100%;
    border: none;
    display: block;
}

/* ------------------------------
   SCORM – MODE PLEIN ÉCRAN
------------------------------ */

.scorm-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    background: #fff;
    z-index: 9999;
    overflow: hidden;
}

.scorm-fullscreen iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ------------------------------
   FIXES POUR SCORM NON RESPONSIVE
------------------------------ */

/* Certains SCORM utilisent une taille fixe → on force l’adaptation */
.scorm-fullscreen iframe html,
.scorm-fullscreen iframe body {
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
}

/* Empêche Bootstrap de limiter la largeur */
.container-scorm {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

/* ------------------------------
   BOUTON PDF
------------------------------ */

.btn-pdf {
    padding: 10px 22px;
    font-size: 1rem;
    border-radius: 6px;
}
