/*
pour le problème de hauteur de l'iframe sècheresse dans météo-peda
*/
.bloc_seismograms > div > div {
  position: relative;
  z-index: 0;   /* remet ce bloc derrière */
}
.title_paragraph,
.title_paragraph a {
  position: relative;
  z-index: 1;  /* au-dessus du reste */
}
.bloc_seismograms {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  border: 1px solid lightblue;
  border-radius: 8px;
  padding: 15px;
  background: #f9fcff;
  gap: 20px;
  margin-top:15px;
  margin-bottom:15px;
}

.description_seismograms {
  flex: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.title_seismograms {
  font-weight: bold;
  color: #004466;
}

.text_seismograms {
  margin-top: 8px;
  text-align: justify;
}

.links_download_seismograms {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  background: #eaf6ff;
  padding: 15px;
  border-radius: 8px;
}

.seismo_peda_container_acro label,
.radios label {
  font-weight: bold;
  font-size: 0.9em;
  color: #333;
}
.links_download_seismograms .select_work a {
  display: flex;              /* Active flexbox */
  align-items: center;        /* Aligne verticalement icône + texte */
  gap: 8px;                   /* Petit espace entre l’icône et le texte */
  text-decoration: none;      /* Optionnel : supprime soulignement */
  margin: 5px 0;              /* Un peu d’espace entre chaque lien */
}

.links_download_seismograms .select_work img {
  height: 25px;
  width: auto;                /* Garde les proportions */
}

#acro_stat {
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.radios {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

button {
  padding: 8px 15px;
  background-color: #007acc;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #005f99;
}

@media (max-width: 768px) {
  .bloc_seismograms {
    flex-direction: column;
  }
}

