
.calendar-nav h5{
  font-size: 1rem;
}

.calendar-nav a{
  color: var(--primary);
}

.calendar-nav i {
  font-size: 1.2rem;
  font-weight: 600 !important;
  color: var(--primary);
}
.calendar-table{
  overflow-y: auto;
  height: 70vh;
  overflow-x: auto;
  border-collapse: separate;
}

.calendar-table thead th {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 3;
}

.calendar-table th:first-child,
.calendar-table td:first-child {
  position: sticky;
  left: 0;
  background: #f9f9f9;
  z-index: 5;
}

.calendar-table thead th:first-child {
  z-index: 6;
}

.time-th{
  font-size: 0.6rem;
  min-width: 70px;
  text-align: left;
}

.time-th-staff {
  font-size: 0.7rem;
  min-width: 140px;
}

.calendar-table .img-responsive{
  height: 40px;
  width: 40px;
  margin: auto;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 1px 1px 5px #3333334a;
}

.calendar-table .img-responsive:hover {
  transform: scale(1.8);
  transition: ease-in-out 0.2s;
  z-index: 7;
}

.calendar-table tbody td{
  min-width: 80px !important;
  max-width: 80px !important;
}

.booked{
  position: relative;
  margin-bottom: 10px;
  padding: 2px 6px;
  box-shadow: 1px 1px 5px #3333333c;
  border-radius: 2px;
  cursor: pointer;
  color: var(--white);
  font-size: 0.65rem;
}

.booked:hover{
  z-index: 4;
  transform: scale(1.1);
  transition: ease-in 0.2s;
}