ul {
    list-style: none;
}

.fullCalendar {
    border: 1px #222 solid;
    border-radius: 5px;
    width: 100%;
    min-width: 1000px;
    max-width: 1400px;
    height: 100%;
    overflow: hidden;
    max-height: 600px;
}

.calendarHeader {
    background: #012145;
    color: #fff;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calendarHeader h3 {
    font-size: 1.7em;
}

.calendarBody {
    display: flex;
    overflow-y: scroll;
    height: 83%;
}

.timesCol {
    margin: 0;
    color: #fff;
    padding: 0px;
    width: 10%;
}

.timesCol li {
    height: 30px;
    padding: 15px 20px;
    border: none;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px #222 solid;
}

.scheduleCol {
    width: 90%;
    margin: 0;
    padding: 0;
}

.scheduleCol li {
    /* height: 3px; */
    padding: 5px 20px;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

/* .scheduleCol ul:nth-child(4n){
    border-bottom: 1px #BABABA solid;
} */

.todayDate {
    padding-left: 10px;
    padding-top: 5px;
    font-size: 1.2em;
    font-weight: bold;
}

.dayView {
    width: 100%;
    display:flex;
}

/* Scrollbar Style */

/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #222;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }