/* Ajout de styles pour la modal de prompt */
#prompt-modal {
    transition: opacity 0.3s ease;
}

#prompt-modal.hidden {
    display: none;
    opacity: 0;
}

#dictation-preview {
    max-height: 60px;
    overflow: hidden;
    display: inline-block;
}

#pre-prompt-input {
    min-height: 100px;
    resize: vertical;
}

/* Animation pour l'apparition de la modal */
@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

#prompt-modal .bg-white {
    animation: modalFadeIn 0.3s ease forwards;
}
