/* =======================
Scrolling Dates
========================== */
.card.selected {
  border: 2px solid var(--secondary) !important;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2) !important;
  transform: scale(1.15);
}


/* =======================
Appointment List
========================== */
.appointment-list .month-heading{
  font-size: 0.8rem;
  font-weight: 600;
}

.appointment-list-item h5{
  font-size: 0.8rem;
}

.appt-card {
  background-color: #fcfcfc;
  border: 1px solid var(--secondary);
  border-radius: .5rem;
  box-shadow: 2px 5px 5px #6c757d34;
}

.appt-card {
  margin-top: 0.9rem;
  margin-bottom: 1.5rem;
}

.appt-details .bi {
  vertical-align: -.125em;
  margin-right: .25rem;
  color: var(--primary);
}

.date-box {
  width: 64px;
  text-align: center;
  border-radius: 8px;
  /* background: #f8f9fa; */
}

.date-box .weekday {
  font-size: 1.2rem;
  font-weight: 600;

}

.date-box .day{
  font-size: 0.7rem;
  color: #6c757d;
}

/*============
Booking Items
===========*/
.booking-items{
  background-color: #e9ecef;
  font-size: 0.75rem;
  color: var(--clr3);
  padding: 0 5px;
  margin-bottom: 2px;
  border-radius: 5px;
}

.staff-icons img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-left: -8px;
  border: 2px solid #fff;
}

.staff-icons img:hover {
  transform: scale(1.5);
  transition: ease-in-out 0.2s;
}

.calendar-table thead td {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 3;
}

.calendar-table tbody td {
  border-right: 1px solid #0000002f;
  
}

