.floating-btn-unique {
    position: fixed;
    bottom: 50px; /* Mantén el botón flotante 50px desde el fondo */
    left: 50px; /* Mantén el botón flotante 50px desde la derecha */
    background-color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
    z-index: 10000;
}

.floating-btn-unique img {
    width: 40px;
    height: 40px;
}

.floating-btn-unique:hover {
    background-color: #ffffff;
}

.menu-container {
    position: fixed;
    bottom: 120px; /* Ajusta la posición para que el menú quede justo arriba del botón */
    left: 50px; /* Alineación con el botón */
    display: none;
    padding: 10px;
    background-color: #008996C0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10000;
}

.menu-unique {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    z-index: 10000;
}

.menu-unique button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fcfcfc;
    border: 1px solid black;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    z-index: 10000;
}

.menu-unique button img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    z-index: 10000;
}

.menu-unique button:hover {
    background-color: #ffffff;
    z-index: 10000;
}



.accesibilidad-img{
    
    background-image: url(../images/iconos_accesbilidad/GuiaLectura.png);
    height: 30px;
    width: 30px;
    z-index: 30000;

}



.high-contrast{
    background-color: black;
    color: yellow;
}


.high-contrast a,
.high-contrast p,
.high-contrast h1,
.high-contrast h2,
.high-contrast h3,
.high-contrast span,
.high-contrast li,
.high-contrast .bgHeading,
.high-contrast .headingTitle {
  color: yellow !important;
}

.high-contrast .menu-container{
  background-color: rgba(255, 255, 0, 0.89);
}

.high-contrast header,
.high-contrast footer,
.high-contrast .bgHeading,
.high-contrast .headingTitle,
.high-contrast footer {
  background-color: black !important;
}

.high-contrast img {
  filter: grayscale(100%) contrast(100%);
  /* background-color: white; */
}

.high-contrast .reading-mask {
  background: yellow !important;
}
.high-contrast .reading-mask::after{
  border-bottom: 20px solid yellow;
}

.reading-mask {
  position: fixed;
  width: 30%; /* Ancho del 20% */
  height: 15px; /* Grosor de la línea */
  top: 0;
  left: 50%;
  transform: translateX(-50%); /* Centrar horizontalmente */
  background: rgba(0, 0, 0, 0.8); /* Color oscuro para la línea */
  pointer-events: none;
  z-index: 9999;
}

/* Flecha (pico) apuntando hacia arriba */
.reading-mask::after {
  content: "";
  position: absolute;
  top: -20px; /* Posición de la flecha */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 20px solid rgba(0, 0, 0, 0.8); /* Flecha del mismo color que la línea */
}