/* Backdrop: fondo semitransparente con efecto blur */
.termometro-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11000;
}

/* Contenedor modal blanco */
.termometro-modal-container {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  text-align: center;
  margin: 0 auto;
}

/* Título del modal */
.termometro-title {
  margin: 0 0 20px;
  font-size: 1.2em;
  color: #333;
}

/* Botón de cierre */
.termometro-close-btn {
  background: #fff;
  border: 1px solid #ccc;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 20px;
}

/* Contenedor para los botones de navegación vertical */
.termometro-nav {
  display: flex;
  justify-content: space-between;
  margin: 10px auto;
  width: 250px;
}

/* Botones de navegación */
.termometro-nav-btn {
  background: #fff;
  border: 1px solid #ccc;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 16px;
}


.termometro-inline-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.termometro-inline-content {
    display: inline-block;
    text-align: center;
}
