
         .keyboardpanel
         {
            user-select: none;
            -moz-user-select: none;
            -webkit-user-select: none;
            text-align: center;
         }

         .vickey
         {
            padding: 0px;
            width: 27px;
            height: 40px;
            margin: 2px;
            margin-bottom: 3px;
            font-size: 25px;
            font-weight: bold;
            font-family: monospace;
            color: white;
            background: #666;
            border: 0px solid;
            border-radius: 4px;
            user-select: none;
            -moz-user-select: none;
            -webkit-user-select: none;
         }

         .vickey:active
         {
            background: #aaa;
         }

         .halfspace
         {
            width: 00px;
            height: 120px;
            margin: 2px;
            background: none;
            border: 0px solid;
            padding: 0px;
            user-select: none;
            -moz-user-select: none;
            -webkit-user-select: none;
         }


/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


         .keyboardpanel
         {  user-select: none;  -moz-user-select: none;  -webkit-user-select: none;  text-align: center;     }

         .vickey
         {
            padding: 0px;
            width: 30px;
            height: 40px;
            margin: 2px;
            margin-bottom: 3px;
            font-size: 25px;
            font-weight: bold;
            font-family: monospace;
            color: white;
            background: #666;
            border: 0px solid;
            border-radius: 4px;
            user-select: none;
            -moz-user-select: none;
            -webkit-user-select: none;
         }

         .vickey:active
         {
            background: #aaa;
         }

         .halfspace
         {
            width: 00px;
            height: 120px;
            margin: 2px;
            background: none;
            border: 0px solid;
            padding: 0px;
            user-select: none;
            -moz-user-select: none;
            -webkit-user-select: none;
         }


<style>
/* Container for the dropdowns */
.dropdown-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    justify-content: center;
    padding-bottom: 10px;
}

/* Button styling */
.dropdown .btn {
    padding: 3px 6px; /* Reduced padding */
    font-size: 0.75rem; /* Smaller font size */
}

/* Dropdown menu styling */
.dropdown-menu {
    width: 250px; /* Slightly wider */
    font-size: 0.75rem; /* Smaller font size for items */
    padding: 0; /* No padding */
    max-height: 300px; /* Set a max height */
    overflow-y: auto; /* Enable scroll if items overflow */
}

/* Individual items in the dropdown */
.dropdown-item {
    padding: 0.25rem 0.5rem; /* Smaller padding */
    font-size: 0.70rem; /* Smaller font size for items */
}

/* Hover effect */
.dropdown-item:hover {
    background-color: #bab8b5 !important;
}
