/* Style du bouton principal */
a.download-button {
  text-decoration: none; /* Supprime le soulignement par défaut */
  display: inline-flex;  /* Conserve le layout Flexbox */
  align-items: center;
  gap: 12px;
  padding: 20px 20px;
  background-color: #6793e6;
  color: white;
  border: none;
  border-radius: 8px;
  box-shadow: 6px 6px 10px #999;
  font-family: sans-serif;
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.2s;
}
/* Effet au survol */
.download-button:hover {
  background-color: #2563eb;
}

/* Conteneur du texte */
.download-text {
  text-align: left;
  line-height: 1.4;
}

/* Lignes secondaires */
.download-subtext {
  font-size: 0.9em;
}

/* Style de l'icône SVG */
.download-icon {
  width: 40px;
  height: 40px;
  stroke: currentColor;
  stroke-width: 2;
  flex-shrink: 0; /* Empêche le rétrécissement */
}

/*==== En dessous de 450px, on diminue la police du bouton ====*/
@media only screen and (max-width: 450px) {
  .download-icon {
    width: 20px;
    height: 20px;
  }
  a.download-button {
    padding: 12px 12px;
    font-size: 18px;
  }
}
