html {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: Arial;
  /* padding-left: 3vw; */
}

#plan_container {

  position: absolute;
  bottom: 0px;
  height: 10vh;
  z-index: 100;
  width: 100vw;


}

.plan-btn-div {
  display: inline-block;
}

#plan-scroll-container {
  overflow: scroll;
  height: 100vh;
  zoom: 0.7;
}

.plan-select-options {
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  display: flex;
  flex-direction: column;
  row-gap: 0px;
  justify-content: space-between;
}

.clearAllBtn{
  position: relative;
  left: 65vw;
  top: -10vh;
  padding: 30px 50px;
}

.content-main {
  margin-top: 25px;
  display: flex;
  
  transition: all 200ms ease-in-out;



}


.search-parameters-container {
  flex:1;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1vw;
}

.classes-list-containter {
  display: grid;
  grid-template-columns: 90vw;
  padding-top: 1%;
  margin-right: auto;
  margin-left: auto;

  overflow-y: scroll;
  max-height: 100%;

  transition: all 200ms ease-in-out;

}

.text-input {
  margin: auto;
}

.section-display {
  position: relative;
  display: flex;
  flex-direction: row;
  border-width: 1px;
  border-style: solid;
  margin-bottom: 25px;
  padding-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  background-color: rgb(238, 238, 247);
  width: 60vw;
  transition: all 100ms ease-in-out;
  height: 30vh;
  overflow-y: scroll;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  

}

.section-display::-webkit-scrollbar {
  display: none;
}

.section-display:hover{
  cursor: pointer;
  scale: 1.03;  
}

.section-display-side-div{

  border: 0;
  border-bottom: 1px;
  border-style: solid;
  text-align: center;


}

.section-display-side-title{
  font-size: large;
}

.section-display-side-text{
  font-size: small;
}


.section-left-display{
flex:1;
margin-top: auto;
margin-bottom: auto;
margin-left: 4vw;



}

.section-right-display{
  flex:1;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 4vw;
  
  
  
  }


.section-middle-display {
  flex:1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding-left: 20px;
  padding-right: 8px;
  padding-top: 10px;
}

.section-right-display {

}

.section-middle-text-display {

}


.middle-detail-text,
.prof-email-text,
.prof-name-text,
.campus-building-text,
.room-text,
.course-desc-text,
.section-hours-text,
.professor-name-text,
.subject-courseNumber-text,
.course-title-text {
  text-align: center;
  margin-top: 1vh;
  margin-bottom: 1vh;
}

.course-title-text{
  font-size: x-large;
}
.subject-courseNumber-text {
  font-size: medium;
}
.professor-name-text,
.section-hours-text {
  font-size: small;
}

.section-middle-week-display {
  display:flex;
  width: 30vw; 
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  margin-bottom: 0px;
  justify-content: center;
}


.weekday-box-display {
  border-width: 1px;
  border-style: solid;
  padding-left: 0.5vw;
  padding-right: 0.5vw;
  background-color: white;



}
.weekday-box-text {
  text-align: center;
  margin-bottom: 0.5vh;
  margin-top: 0.5vh;

}



.attributes-display{

}

.occupancy-title-text,
.attributes-title-text {
  text-align: center;

  font-size: small;
  margin-top: 8px;
  margin-bottom: 3px;

}

.occupancy-info-text,
.attribute-text {
  text-align: center;
  font-size: small;
  display: inline-block;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: x-small;
}


.attributes-list-display{
  display: flex;
  flex-direction: row;
  column-gap: 10px;
  justify-content: center;
}


.occupancy-display {


}

.occupancy-info-text{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.class_on_this_day_weekday_color {

  background-color: green;
}

.save-button {
  position: absolute;
  top: 10px;
  right: 10px;


  /*Look like save ribbon*/
  border-left: 15px solid rgb(202, 202, 251);
  border-right: 15px solid rgb(202, 202, 251);
  border-top: 15px solid rgb(202, 202, 251);
  border-bottom: 15px solid transparent; /*Creates triangle cut out at bottom of ribbon*/
  height: 15px;

}

.save-button:hover {
  cursor: pointer;

}



