#config-keyboard-container {
    display: none;
    justify-content: center;
    padding-top: 2vh;
    position: absolute;
    overflow: hidden;
    top: 10vh;
    height: 88vh;
    text-align: center;
    margin: auto;
    width: 100%;
    background:#cfcfcf;
    z-index:12;
}

#keyboard {
    flex-direction: column;
    width: 100%;
}
#cerrar-config-keyboard{
    border-radius: 5.3vh;
    background-color: white;
    border-style: solid;
    border-width: 1px;
    border-color: #80808094;
    cursor: pointer;
    width: 14vh;
}
#reset-config-keyboard{
    border-radius: 5.3vh;
    background-color: white;
    border-style: solid;
    border-width: 1px;
    border-color: #80808094;
    cursor: pointer;
    width: 14vh;
}
#cerrar-config-keyboard:hover{
    background-color: #d8f4ff;
}
#reset-config-keyboard:hover{
    background-color: #d8f4ff;
}
.key {
    width: 7vh;
    color: #777777;
    height: 7vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: #e1e1e1;
    font-size: 2vh;
    margin: 0.2vh;
}
.tecla-configurable{
    cursor: pointer;
    background-color: white;
    color:black;
    font-size: 5vh;
    transition: background 0.2s ease-in-out;
}
.tecla-configurable:hover{
    background:#def3fc;
}
.blinking {
  animation: blink 1s infinite;
}

@keyframes blink {
  0% { background-color: #aedff5; }
  50% { background-color: white; }
  100% { background-color: #aedff5; }
}
#input-test-tecla{
    opacity: 0;
    cursor: default;
    height:0;
    width:0;
}
#input-tecla{
    opacity: 0;
    cursor: default;
    height:0;
    width:0;
}
.testeando-tecla{
    border-color: black;
    border-size: 2px;
    border-style: solid;
}

#keyboard-fila1 {
    display: flex;
    justify-content: center;

}

#keyboard-fila2 {
    display: flex;
    justify-content: center;
}

#keyboard-fila3 {
    display: flex;
    justify-content: center;
}

#keyboard-fila4 {
    display: flex;
    justify-content: center;
}
#keyboard-fila5 {
    display: flex;
    justify-content: center;
}
#relleno-keyboard-0b{
    width: 10vh;
}
#relleno-keyboard-1{
    width: 10vh;
}
#relleno-keyboard-2{
    width: 14vh;
}
#relleno-keyboard-2b{
    width: 11vh;
}
#relleno-keyboard-3{
    width: 18vh;
}
#relleno-keyboard-3b{
    width: 15vh;
}
#keyboard-space{
    width: 48vh;
}

#press-this-key-popup {
    display: none; /* Oculto por defecto */
    position: absolute; /* Será posicionado dinámicamente */
    background-color: white; /* Fondo del popup */
    border: 1px solid #ccc; /* Borde gris claro */
    padding: 10px; /* Espacio interno */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Sombra suave */
    z-index: 800; /* Asegura que esté por encima de otros elementos */
    border-radius: 5px; /* Bordes ligeramente redondeados */
    width: 20vh;
    text-align: center;
    background: #fff8d2
}
#press-this-key-popup::before {
  content: "";
  position: absolute;
  top: -2vh; /* Ajustá esta distancia según el tamaño del "conito" */
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #fff8d2 transparent;
}
#press-this-key-popup .popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#press-this-key-popup .lbl-subtipo {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}