.pdf-button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #54bdfe;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}


/* Style lorsque le curseur survole le bouton */
.pdf-button:hover {
    background-color: #747474;

}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}
