.keyboard-layout-switcher {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  margin-top: 3px;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 10px;
  user-select: none;
}
.keyboard-layout-switcher-button {
  transition: all 0.2s ease-in-out;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px 50px;
  margin: 0 3px;
  cursor: pointer;
  color: #000;
  font-size: 15px;
  text-decoration: none;
  text-transform: uppercase;
}
.keyboard-layout-switcher-button:hover {
  color: #000;
  text-decoration: none;
}
.keyboard-layout-switcher-button:active {
  transform: scale(0.9);
  color: #000;
  text-decoration: none;
}
.keyboard-layout-switcher-button-active {
  text-decoration: none;
  font-weight: bold;
}
.keyboard {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Lucida Console", Monaco, monospace;
  font-size: 22px;
  user-select: none;
  padding: 6px;
}
.keyboard-left {
  align-items: start;
}
.keyboard-right {
  align-items: end;
}
.keyboard-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 10px;
}
.keyboard-key {
  transition: all 0.1s ease-in-out;
  background-color: #fff;
  outline: 1px solid #444;
  outline-offset: 0.1px;
  border: 0px;
  border-radius: 7px;
  padding: 15px 25px;
  margin: 0 3px;
  cursor: pointer;
  box-shadow: 3px 3px 0px #444;
}
.keyboard-key:hover {
  box-shadow: 0px 0px 0px #444;
  background-color: #eee;
}
.keyboard-key:active {
  transform: scale(0.9);
}
.keyboard-key-space {
  width: 200px;
  text-align: center;
}
.keyboard-key-shifted {
  background-color: #ddd;
}
.keyboard-key-shifted-hard {
  background-color: #ddd;
}
.keyboard-key-capsed {
  background-color: #ddd;
}
.keyboard-delimiter {
  width: 15px;
}
.keyboard-vdelimiter {
  height: -10px;
  padding: 0;
  margin: 0;
}
.keyboard-key-enter {
  width: 100px;
  text-align: start;
}
.keyboard-key-tab {
  width: 75px;
  text-align: start;
}
.keyboard-key-bksp {
  width: 70px;
  text-align: start;
}
.keyboard-key-clearline {
  width: 40px;
}
.keyboard-key-shift {
  width: 75px;
}
#start {
  margin-top: 140px;
  height: 0;
  width: calc(100% - 30px);
  padding-top: calc(40% - 15px); /* 1:1 aspect ratio */
  padding-bottom: calc(60% - 15px); /* 1:1 aspect ratio */
}
.ui-menu-item {
  height: 50px;
  line-height: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 20px;
}
