/* Styles pour les boutons PDF désactivés */
.bouton05.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.bouton05.disabled:hover {
    opacity: 0.6;
}

/* Animation de chargement pour les PDF en cours de génération */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.bouton05.disabled {
    animation: pulse 2s infinite;
}

/* Style pour la meta box PDF dans l'admin */
#en3s-pdf-generator .button {
    margin-right: 5px;
}

#en3s-pdf-generator #pdf-status {
    font-size: 12px;
    line-height: 1.4;
}

/* Style pour les messages de statut PDF */
.pdf-status-success {
    color: #46b450;
    font-weight: bold;
}

.pdf-status-error {
    color: #dc3232;
    font-weight: bold;
}

.pdf-status-loading {
    color: #0073aa;
    font-style: italic;
}
