/* =========================================
   📄 STYLE POUR LA VISIONNEUSE PDF
   ========================================= */

.pdf-container {
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* La zone où la page s'affiche */
#pdf-render {
    width: 100%;
    height: auto;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    background-color: white;
}

/* La barre de contrôle en bas */
.pdf-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    margin-top: 10px;
}

/* Le texte du milieu (Page X sur Y) */
.pdf-controls span {
    font-weight: bold;
    font-size: 1.1rem;
    color: #333;
}

/* On grise le bouton quand on est à la première ou dernière page */
.pdf-controls button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}