/* Styles pour les pièces jointes téléchargeables */

.download-attachment {
    margin: 20px 0;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    border-radius: 12px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.download-attachment:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
    transform: translateY(-3px);
    border-color: #0066cc;
}

.download-attachment a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #0066cc;
}

.download-attachment a:hover {
    color: #0052a3;
}

/* Icône du type de fichier */
.download-attachment i.fa-file-pdf,
.download-attachment i.fa-file-word,
.download-attachment i.fa-file-excel,
.download-attachment i.fa-file-powerpoint,
.download-attachment i.fa-file-archive,
.download-attachment i.fa-file-alt,
.download-attachment i.fa-file-csv,
.download-attachment i.fa-file {
    font-size: 40px;
    color: #0066cc;
    min-width: 40px;
    text-align: center;
}

/* Icône PDF en rouge */
.download-attachment i.fa-file-pdf {
    color: #dc3545;
}

/* Icône Word en bleu */
.download-attachment i.fa-file-word {
    color: #2b579a;
}

/* Icône Excel en vert */
.download-attachment i.fa-file-excel {
    color: #217346;
}

/* Icône PowerPoint en orange */
.download-attachment i.fa-file-powerpoint {
    color: #d24726;
}

/* Icône Archive en jaune */
.download-attachment i.fa-file-archive {
    color: #ffc107;
}

/* Conteneur du texte */
.download-attachment div {
    flex: 1;
}

/* Titre du fichier */
.download-attachment strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.3;
}

/* Informations (taille, type) */
.download-attachment span {
    font-size: 13px;
    color: #666;
    font-weight: 400;
}

/* Icône de téléchargement */
.download-attachment i.fa-download {
    font-size: 24px;
    color: #0066cc;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.download-attachment:hover i.fa-download {
    transform: translateY(2px);
    color: #0052a3;
}

/* Responsive */
@media (max-width: 768px) {
    .download-attachment {
        display: block;
        width: 100%;
    }

    .download-attachment a {
        gap: 12px;
    }

    .download-attachment i.fa-file-pdf,
    .download-attachment i.fa-file-word,
    .download-attachment i.fa-file-excel,
    .download-attachment i.fa-file-powerpoint,
    .download-attachment i.fa-file-archive,
    .download-attachment i.fa-file-alt,
    .download-attachment i.fa-file-csv,
    .download-attachment i.fa-file {
        font-size: 32px;
        min-width: 32px;
    }

    .download-attachment strong {
        font-size: 15px;
    }

    .download-attachment span {
        font-size: 12px;
    }
}

/* Accessibilité */
.download-attachment a:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}

/* Animation au chargement de la page */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.download-attachment {
    animation: fadeInUp 0.3s ease;
}