body {
    /* disable long press in iOS? */
    -webkit-touch-callout: none;

  }

  .ventana{
    background: #00B0F6;
    width: 2200%;
    color: black;
    font-family: Arial, Arial, Helvetica, sans-serif;
    font-size: 18px;
    padding: 65px;
    min-height: 300px;
    border-radius: 22px;
    position:absolute;
    left:450%;
    top:-1420%;
    display:none;
}

.hidden {
  display: none;
 }

 .table-container {
  max-height: 300px; /* ajusta este valor según tus necesidades */
  overflow-y: auto;
 }
 

@media screen and (max-width: 600px) {
    .ventana {
        width: 90%;
        font-size: 16px;
        padding: 50px;
    }
}


#cerrar{
    position:absolute;
    right: 10px;
    top: 10px;

}

#botones {
    text-align: center;
  }
  
  #botones button {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    margin: 5px;
  }

  #container button {
    border-radius: 0%;
    width: 25px;
    height: 25px;
    margin: 4px;
    font-size: 13px;
  }

  .meinUI {
    border: 0px solid pink;
    position:fixed;
    top: 0px;
    width: 5%;
    height: 99%;
    z-index: 1;
    pointer-events: none; /* allow click-through in transparent areas */
  }

  .mainUI {
    border: 0px solid pink;
    position: fixed;
    top: 0px;
    width: 99%;
    height: 99%;
    z-index: 1;
    pointer-events: none; /* allow click-through in transparent areas */
  }
  .regionUI {
    border: 0px solid yellow;
    position: absolute;
    display: flex;
    flex-direction: row;
    pointer-events: none;
  }
  .buttonUI {
    border: 0px solid lime;
    display: flex;
    flex-direction: column;
    justify-content: center;
    pointer-events: auto;
    filter: drop-shadow(0px 0px 20px white);
  }
  .skyColor {
    filter: hue-rotate(240deg) saturate(100%) brightness(100%)
      drop-shadow(0px 0px 20px white);
  }
  .baseColor {
    filter: hue-rotate(24deg) saturate(68%) brightness(100%)
      drop-shadow(0px 0px 20px white);
  }
  .grayColor {
    filter: hue-rotate(0deg) saturate(0%) brightness(100%)
      drop-shadow(0px 0px 20px white);
  }

  /* Paginacion de butones*/
  .paginacion {
    pointer-events: auto;
    position: fixed;
    bottom: 1px;
    /*background: #100a1f;
    width: 100%;*/
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 100px 30px 20px 150px;
  }
  
  .paginacion button {
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 40px;
    width: 120px;
    background: #241744;
    color: #fff;
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    transition: .3s ease all;
  }
  
  .paginacion button:hover {
    background: orange;
  }