@media print {
    body { display:none; }
}

.pdf-imager-container {
    width: 100%;
    height: 100%;
}

.pdf-imager-container #pdf-container {
    display: flex;
    height: calc(100% - 2.5rem);
    overflow: auto;
}

.pdf-imager-container .pdf-imager-nav {
    display: flex;
    width: 100%;
    background-color: #373942;
    font-family: Arial, sans-serif;
    height: 2.5rem;
}

.pdf-imager-container #pdf-page {
    flex: 3;
    width: 100%;
    margin-top: 0.5rem;
    text-align: center;
    color: white;
}

.pdf-imager-container #pdf-page #page_num {
    width: 3rem;
    color: black;
    text-align: right;
}

.pdf-imager-container #prev,
.pdf-imager-container #next {
    flex: 1;
    background-color: #6cb5f3;
    border: 0;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: all .3s;
    font-size: 1rem;
}

.pdf-imager-container #prev:hover,
.pdf-imager-container #next:hover {
    background-color: #6BA5D6;
}

.pdf-imager-container #the-canvas {
    display: block;
    margin: auto;
    width: auto;
}



.pdf-imager-container #pdf-zoom {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 5px;
    font-family: Arial, sans-serif; /* Police pour le zoom */
}

.pdf-imager-container #pdf-zoom button {
    border: none;
    background-color: #6cb5f3;
    border-radius: 50%;
    cursor: pointer;
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
    color: white;
}

.pdf-imager-container #pdf-zoom button:hover {
    background-color: #6BA5D6;
}

