/* https://www.w3schools.com/cssref/css_units.php */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgb(217, 217, 217); */
    background-color: #ffffff;
    overflow: hidden;
    font-family: Calibri;
    color: rgb(255, 255, 255);
}

.init-hidden {
    display: none;
}


#login {
    width: 100dvw;
    height: 100dvh;
    
    /* Center the login container */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    /* Ensure no scrollbars */
    box-sizing: border-box;
}
#login button {
    background-color: rgb(92, 192, 255); /* rgb(255, 244, 126); */
    border-radius: 5px;
    border: 0px;
    font-family: Calibri;
}
#login button:active {
    background-color: rgb(91, 155, 194); /* rgb(191, 181, 76); */
}

.center-text { /* this goes on the parent not the children */
    text-align: center;
}
.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.box {
    border: 5.5px;
    border-radius: 5px;
    border-style: solid;
/*     padding-left: 15px;
    padding-right: 15px; */
    padding: 10px;
    background-color: #e3e3e3;
}
.box-red {
    border-color: rgb(255, 46, 46);
}
.box-lightyellow {
    border-color: rgb(255, 239, 61);
}
.box-blue {
    border-color: rgb(57, 179, 255);
}

#authInput {
    width: 40%;
    height: 100%;
}



.switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 24px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ff5757;
  -webkit-transition: 0.33s;
  transition: 0.33s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: rgb(255, 255, 255);
  -webkit-transition: .8s;
  transition: .8s;
}

input:checked + .slider {
  background-color: #57ff5f;
}

input:focus + .slider {
  box-shadow: 0 0 1px rgb(0, 0, 0);
}

input:checked + .slider:before {
  -webkit-transform: translateX(22px);
  -ms-transform: translateX(22px);
  transform: translateX(22px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 24px;
}

.slider.round:before {
  border-radius: 50%;
}

.switch-label {
    line-height: 100%;
    glyph-orientation-vertical: middle; 
}

.input-container {
    display: flex;          /* Enable Flexbox */
    align-items: center;    /* Vertically center children */
    gap: 10px;
    margin: 6px;
}


#columnContainer {
    /* Setup multi-column layout */
  column-count: 3;
  column-width: 160px; /* Adjust based on your content */
  column-gap: 20px;
  height: 70dvh; /* Fixed height to enable vertical wrapping */
  
  /* Better alignment for spans */
  display: block;
  width: 70dvw;
  height: 70dvh;
}