/* Conteneur pour les boutons de téléchargement supplémentaires */
.additional-downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px auto 20px auto;
    justify-content: center;
    align-items: center;
}

/* Style pour les boutons supplémentaires (plus petits que le bouton principal) */
.additional-button {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 8px 16px !important;
    border-radius: 20px;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    font-size: 0.85em;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.additional-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.additional-button:active {
    transform: translateY(0);
}

.additional-button span {
    font-size: 1.1em;
}

/* Responsive : empiler les boutons sur mobile */
@media (max-width: 768px) {
    .additional-downloads {
        flex-direction: column;
        width: 100%;
    }
    
    .additional-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}