/* Styles personnalisés pour l'application */

/* Animation pour la barre de progression */
#progress-bar {
    transition: width 0.3s ease-in-out;
}

/* Styles pour les tableaux */
table {
    border-collapse: collapse;
}

table th,
table td {
    border: 1px solid #e5e7eb;
}

/* Styles pour le PDF preview */
#pdf-iframe {
    min-height: 500px;
}

/* Responsive */
@media (max-width: 1024px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

/* Animation de chargement */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading {
    animation: spin 1s linear infinite;
}

