#class-display{

  margin-top: 13vh;
  height:85vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
body{
  height: 100%;
}
#search-bar{
  background-color: rgb(228, 228, 228);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 10%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;

  transition: all ease-in-out 300ms;
  z-index: 100;
}

#search-options,#adv-search-options{

  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;


  transition: all ease-in-out 300ms;
  

}

#search-options{

  justify-content: space-evenly;

  padding-left: 5%;
  padding-right: 5%;

}
#adv-search-options{
  height: 0;
  background-color: rgb(199, 199, 199);
  overflow: hidden;
  justify-content: space-evenly;
  flex-wrap: wrap;

}


#search-options:hover ~ #adv-search-options, #adv-search-options:hover{

  height: 100%;

}






#search-bar:hover{

  height: 20%;



}


#time-select{
  display: flex;
  flex-direction: row;
  flex: 1;
  justify-content: center;
  align-items: center;

}


#time-container{
  display: flex ;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 100%;

  border: 1px solid black;

  overflow: hidden;

}


.time-select{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 5%;
  margin-right: 5%;


}

.time-select p {
  margin-top: 0;
  margin-bottom: 0;
}

#day-select{
  display: flex;
  justify-content: center;
  border: 1px solid black;
  padding: 5px;
}

.day-box{
  margin: 5px;
  border: 1px solid black;

  padding: 5px;
  cursor: pointer;
  transition: all ease-in-out 100ms;
}

.day-box:hover {
  background-color: green;
  scale: 1.2;
}


#calendar-display{
  height: 100%;
  width: 100%;

  background-color: rgb(245, 245, 245);

}

#calendar-container{

  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all ease-in-out 300ms;
}

#resize-handle {

  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: large;
  font-weight: bold;
  border-top: 1px solid black;
  border-left: 1px solid black;
  border-right: 1px solid black;
  min-width: 8%;
  cursor:pointer;
  background-color: white;
  


}