
.light-mode{
  background-color: rgb(240 240 240 /1);
  color: rgb(16 16 16 / 1);
}


/* toggle switch styles */
#toggle {
  display: none;
}

#toggle-demo label {
  display: inline-block;;
  width: 40px;
  height: 20px;
  background-color: #ccc;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  margin-left: 32px;
}

#toggle-demo label::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s;
}

#toggle:checked + label {
  background-color: #2196F3;
}

#toggle:checked + label::before {
  transform: translateX(20px);
}

/* form styles */
#insert-form.disabled{
  display: none;

}
input{
  width: 24rem;
  font-size: 1.44rem;
  margin-left: 1.44rem;
  
}
input[type=submit]{
  border-radius: .72rem;
}

/* modal styles */

.modal {
  /* This way it could be display flex or grid or whatever also. */
  display: block;
  
  /* Probably need media queries here */
  width: 600px;
  max-width: 100%;
  
  height: 400px;
  max-height: 100%;
  
  position: fixed;
  
  z-index: 100;
  
  left: 50%;
  top: 50%;
  
  /* Use this for centering if unknown width/height */
  transform: translate(-50%, -50%);
  
  /* If known, negative margins are probably better (less chance of blurry text). */
  /* margin: -200px 0 0 -200px; */
  
  background: white;
  box-shadow: 0 0 60px 10px rgba(0, 0, 0, 0.9);
}
.closed {
  display: none;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  
  background: rgba(0, 0, 0, 0.6);
}
.modal-guts {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 20px 50px 20px 20px;
  background-color: rgb(16 16 16 / 1);
  color: rgb(240 240 240 /1);
}


.modal .close-button {
  position: absolute;
  
  /* don't need to go crazy with z-index here, just sits over .modal-guts */
  z-index: 1;
  
  top: 10px;
  
  /* needs to look OK with or without scrollbar */
  right: 20px;
  
  border: 0;
  color: rgb(151 193 234 / 0.85);
  background-color: rgb(16 16 16 /1);
  padding: 5px 10px;
  font-size: 1.2rem;
  border-radius: 0.8rem;
}

.modal .close-button:hover, .open-button:hover {
  color: rgb(16 16 16 / 1);
  background-color: rgb(151 193 234 / 0.85);
}

.open-button{
  padding: 0.25rem 1rem;
  border-radius: 0.8rem;
  color: rgb(151 193 234 / 0.85);
  background-color: rgb(16 16 16 /1);
}

/* other rando styles */
article{
  padding: 1.2rem 0;
}

#booking{
  min-height: 500px;
}