@font-face {
  font-family: "eg"; /* You can choose any name here */
  src: url('./fonts/smol.ttf') format('truetype'); /* Replace 'yourfont.ttf' with your font's filename */
}

*{
  padding: 0;
  user-select: none;
  font-family: 'Courier New', Courier, monospace,Verdana, Geneva, Tahoma, sans-serif;
  font-size: 12px;
}

body {
    background-color: rgb(36, 36, 36);
    padding: 0;
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mnuSubs, .mnuBg, .mnuLevels {
    display: none;
    flex-direction: column;
    z-index: 8;
    background-color: rgb(167, 167, 167);
    box-shadow: 5px 10px 18px #202020;
    border: 0px;
    padding: 1.5px;
    text-align: left;
    width: auto;
    height: auto;
  }

  .mnuBg{
    min-width: 145px;
    min-height: 158px;
  }

  .mnuSubs{
    min-width: 145px;
    min-height: 163px;
  }

  .mnuLevels{
    min-width: 143px;
    min-height: 145px;
  }

  .subsMaker{
    display: none;
    flex-direction: column;
    z-index: 8;
    background-color: rgb(175, 175, 175);
    box-shadow: 5px 10px 18px #202020;
    padding: 1.5px;
        
    min-width: 390px;
    min-height: 100px;
    width: auto;
    height: auto;
    
  }

  .mnuTitle {
    display: flex;
    flex-direction: row;
    z-index: 8;
    background-color: rgb(143, 42, 211);
    border: 0px;
   
  }
  .mnuTitleText{
    margin: auto;
    width: 100%;
    min-height: 13px;
    text-align: center;
    background-color: coral;
  
  }

  .subEntrie{
    display: flex;
    flex-direction: row;
    justify-content: flex-start; /* Align items to the top */
    align-items:end; /* Center items horizontally */
    padding-top: 2px;

  }

  .subMakerDesc{
    display: flex;
    flex-direction: row;
    justify-content: flex-start; /* Align items to the top */
    align-items: center; /* Center items horizontally */
    height: 20px;
  }

  .subsMakerContent{
    display: flex;
    flex-direction: column;
    align-items:flex-start; /* Center items horizontally */
    min-height: 40px;
    max-height: 350px;
    overflow-y: auto; 
  }

  .minsecinput {
    width: 45px;
    height: 16px;
  }
  .minSecSelect{
    width: 45px;
    height: 20px;

  }

  .makerFooter{
    min-height: 35px;
  }
  textarea{
    font-size: 11px;
    width: 169px;
    height: 25px;
    min-width: 169px;
    min-height: 25px;
    max-width: 500px;
    max-height: 300px;
  }

  hr { 
    display: block;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    margin-left: 4px;
    margin-right: 4px;
    border-style:inset;
    border-width: 1px;
    border-color: #a7a7a7;
  } 

  button {
    font-family: Arial, sans-serif; /* Specify your preferred font stack */
    font-size: 16px; /* Set the font size */
  }


  /*********** Baseline, reset styles ***********/
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  width: 90px;
}

/* Removes default focus */
input[type="range"]:focus {
  outline: none;
}

/******** Chrome, Safari, Opera and Edge Chromium styles ********/
/* slider track */
input[type="range"]::-webkit-slider-runnable-track {
  background-color: #424242;
  border-radius: 0rem;
  height: 3px;
}

/* slider thumb */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  margin-top: -3.5px; /* Centers thumb on the track */
  background-color: #808080;
  border-radius: 0rem;
  height: 10px;
  width: 10px;
}

input[type="range"]:focus::-webkit-slider-thumb {
  outline: 0px solid #808080;
  outline-offset: 0.125rem;
}

/*********** Firefox styles ***********/
/* slider track */
input[type="range"]::-moz-range-track {
  background-color: #424242;
  border-radius: 0rem;
  height: 3px;
}

/* slider thumb */
input[type="range"]::-moz-range-thumb {
  background-color: #808080;
  border: none; /*Removes extra border that FF applies*/
  border-radius: 0rem;
  height: 10px;
  width: 10px;
}

input[type="range"]:focus::-moz-range-thumb{
  outline: 3px solid #808080;
  outline-offset: 0.125rem;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgb(167,167,167); 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #555; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #3f3f3f; 
}


input[type="color"] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 22px;
  padding: 0;
  width: 35px;
}

input[type=file] {
  width: 180px;
  max-width: 100%;
  color: #444;
  
  padding-left: 1px;
  padding-top: 5px;
  font-size: 10px;
  
}

input[type="checkbox"] {
  display: none;
}

/* Create a custom checkbox container */
.custom-checkbox {
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: #fff;
  border: 1px solid #727272;
 margin-left: 3px;
 margin-right: 5px;
  position: relative;
}

/* Style the custom checkbox when checked */
input[type="checkbox"]:checked + .custom-checkbox::before {
  content: "X"; /* Unicode checkmark character */
  position: absolute;
  top: 1px;
  left: 4px;
  color: #000000;
}



