/* Work Day Scheduler */
/*Modified by Charissa Hollister 05/10/2022*/
/***************************** */

/* Overall */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1;
}

textarea{
  background: transparent;
  border: none;
  resize: none;
  color: #000000;
  border-left: 1px solid black;
  padding: 10px;
}

/*hero background image and description*/
.jumbotron {
  text-align: center;
  background-color: transparent;
  color: black;
  border-radius: 0;
  border-bottom: 10px solid black;
}


.description{
  white-space: pre-wrap;
}

.time-block{
  text-align: center;
  border-radius: 15px;
}
/* grid styles*/
.row {
  white-space: pre-wrap;
  height: 80px;
  border-top: 1px solid white;
}

/*time distinctions*/
.hour {
  background-color: #ffffff;
  color: #000000;
  border-top: 1px dashed #000000;
  padding-top: 30px;
}

.past {
  background-color: #d3d3d3;
  color: white;
}

.present {
  background-color: #ff6961;
  color: white;
}

.future {
  background-color: #77dd77;
  color: white;
}

/*subsection unique attributes*/

/*buttons*/
.saveBtn {
  border-left: 1px solid black;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  background-color: #06AED5;
  color: white;
}

.saveBtn:hover {
  font-size: 20px;
  transition: all .3s ease-in-out;
}

.clearBtn{
  text-align: center;
  padding-top:25px;
  padding-left:30vw;
}

/* MEDIA QUERY FOR SMALLER DESKTOP SCREENS AND SMALLER */
@media screen and (max-width: 980px) {
  .body {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .container {
    display: contents;
    justify-content: center;
  }
  .row:hover {
    display: flex;
    font-size: 25px;
    margin: 5px 5px 20px 5px;
  }
}


