
  /*
    Theme: myTheme1
  */

  .simple-keyboard {
    max-width: 675px;
}

/* Fullscreen keyboard styling */
.tablet.fullscreen .simple-keyboard {
    max-width: none;
    width: 100%;
    border-radius: 0;
    margin: 0;
}

.tablet.fullscreen #keyboard-container {
    background-color: #222;
    border-top: 1px solid #555;
}


/*
  function toggleKeyboardVisibility() {
      const keyboard = document.querySelector(".simple-keyboard");
      keyboard.classList.toggle("hidden");
  }

*/

.simple-keyboard.hg-theme-default.myTheme {
    border: none;
    background-color: rgb(123, 124, 124);
    border-radius: 10px;
    margin-bottom: 5px;
    color: white

  }

   /*
    Theme: myTheme1
  */
  .simple-keyboard.myTheme {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 0;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

    .simple-keyboard.myTheme .hg-button {
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgb(60, 60, 60);
        color: white;
    }

        .simple-keyboard.myTheme .hg-button:active {
            background: #585858;
            color: white;
        }

#root .simple-keyboard.myTheme + .simple-keyboard-preview {
    background: #838383;
}