/* Estilos generales */
.clave-muestra {
  position: absolute;
  left: 45vw;
  top: 0;
  margin: 0;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 5px;
  border: 2px solid black;
  border-radius: 12px;
  background-color: yellow;
}
.column-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1000px) {
  .column-container {
    flex-direction: row;
  }
}
.column {
  flex: 1;
}
.column-title {
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  font-size: 1em;
}
.parametro {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.valor-numero {
  width: 1cm;
  text-align: right;
  display: none;
  margin-left: 0px;
  font-size: 0.8em;
}

/* Estilos para las barras deslizantes */
input[type="range"] {
  width: 10cm;
}


#divIntensidades {
  width: 95vw;
  height: auto;
  position: fixed;
  bottom: 1vh;
  right: 0;
  z-index: 50;
  margin: 3vw;
  padding: 0;
}
@media (orientation: landscape) {
  #divIntensidades {
    height: 70vh;
    width: auto;
    margin: 12vw
  }
}


#imagenIntensidades {
  border: 2px solid black;
  width: 100%;
}
#btnCerrarIntensidades {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
}

/*Botón mostrar imagen de intensidades*/
.fixed-button {
  position: fixed;
  top: 10px; /* Ajusta según sea necesario */
  right: 10px; /* Ajusta según sea necesario */
  z-index: 1000; /* Asegura que el botón esté por encima de otros elementos */
  width: 30px; /* Ajusta según sea necesario */
  height: 30px; /* Ajusta según sea necesario */
  border-radius: 50%; /* Hace que el botón sea redondeado */
  background-color: #007bff; /* Color de fondo, ajusta según sea necesario */
  color: white; /* Color del texto */
  border: 2px solid #3107c8;
  font-size: 24px; /* Tamaño del texto */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer; /* Cambia el cursor al pasar sobre el botón */
}

.fixed-button:hover {
  background-color: #0056b3; /* Color de fondo al pasar el cursor, ajusta según sea necesario */
}
