/* Estilo del contenedor principal del aviso */
#browser-detector-warning {
  position: fixed; /* Mantiene el aviso visible al hacer scroll */
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 30px;
  background-color: var(--bs-espol-1); /* Fondo amarillo o naranja para advertencia */
  color: var(--bs-c-8);
  z-index: 10000; /* Asegura que esté por encima de todo */
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: 'Roboto', sans-serif;
}
#browser-detector-warning h3 {
  margin: 0 0 5px 0;
  font-size: 1.2em;
}
#browser-detector-warning p {
  margin: 0 0 10px 0;
}
/* Estilo del botón de actualización */
#browser-detector-warning .button {
  display: inline-block;
  padding: 12px 22px;
  background-color: var(--alert);
  color: var(--bs-c-8);
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
}
/* Estilo del botón de cierre */
#browser-detector-warning .close-button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  color: var(--bs-c-8);
}