 .progress {
     height: 10px;
     border-radius: 5px;
 }

 .modal-progress-bar {
     width: 33%
 }

 /* ===== Styles pour le contenu des conditions financières ===== */
 .finance-content {
     max-height: 300px;
     overflow-y: auto;
     padding: 10px;
 }

 #plateauxOffInfoFinance {
     line-height: 1.6;
     white-space: pre-line;
     font-size: 0.95rem;
 }

 /* ===== VIEWER PDF.JS ===== */
 #plateauxOffPdfViewer {
     position: relative;
     z-index: 10;
     height: 100%;
     display: flex;
     flex-direction: column;
 }

 #plateauxOffPdfCanvas {
     display: block;
     margin: 0 auto;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     border-radius: 4px;
     background: white;
     max-width: 100%;
     transition: transform 0.3s ease;
 }

 #plateauxOffPageIndicator {
     min-width: 80px;
     text-align: center;
     font-size: 0.9rem;
     font-weight: 500;
     color: #495057;
     background: #f8f9fa;
     padding: 4px 12px;
     border-radius: 20px;
     border: 1px solid #e9ecef;
 }

 #plateauxOffPdfViewer:not(.d-none) {
     animation: fadeIn 0.5s ease-out;
 }

 /* ===== PLEIN ÉCRAN ===== */
 :fullscreen #plateauxOffPdfCanvas,
 :-webkit-full-screen #plateauxOffPdfCanvas,
 :-moz-full-screen #plateauxOffPdfCanvas,
 :-ms-fullscreen #plateauxOffPdfCanvas {
     max-width: 95vw;
     max-height: 95vh;
     margin: auto;
     box-shadow: none;
 }

 /* ===== RESPONSIVE ===== */
 @media (max-width: 992px) {
     /* .modal-step-line {
                width: 80px;
            } */
 }

 @media (max-width: 768px) {
     #plateauxOffPageIndicator {
         min-width: 70px;
         font-size: 0.85rem;
     }

     /* .modal-step-line {
                width: 60px;
                margin: 0 8px;
            }

            .demandeur-type-card {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }

            .demandeur-type-icon {
                margin-right: 0;
                margin-bottom: 15px;
            } */
 }

 @media (max-width: 576px) {

     #plateauxOffPageIndicator {
         min-width: 60px;
         font-size: 0.8rem;
         padding: 3px 10px;
     }

     /* .modal-step-indicator {
                flex-direction: column;
            }

            .modal-step-line {
                width: 3px;
                height: 40px;
                margin: 10px 0;
            } */

     .finance-content {
         max-height: 250px;
     }
 }