/* Import Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

.wrapper-calendar{
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.wrapper-calendar .calendar-header{
  display: flex;
  align-items: center;
  padding: 25px 30px 10px;
  justify-content: space-between;
  flex-wrap:nowrap;
}
.calendar-header .calendar-icons{
  display: flex;
}
.calendar-header .calendar-icons span{
  height: 38px;
  width: 38px;
  margin: 0 1px;
  cursor: pointer;
  color: #878787;
  text-align: center;
  line-height: 38px;
  font-size: 1.9rem;
  user-select: none;
  border-radius: 50%;
}
.calendar-icons span:last-child{
  margin-right: -10px;
}
.calendar-header .calendar-icons span:hover{
  background: #f2f2f2;
}
.calendar-header .current-date{
    font-size: 1.45rem;
    font-weight: 500;
    color: #ff6000;
}
.calendar{
  padding: 10px;
}
.calendar ul{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  text-align: center;
}
.calendar .days{
  margin-bottom: 10px;
}
.calendar li{
  color: #333;
  width: calc(100% / 7);
  font-size: 1.07rem;
}
.calendar .weeks li{
  font-weight: 500;
  cursor: default;
}
.calendar .days li{
  z-index: 1;
  cursor: pointer;
  position: relative;
  margin-top: 10px;
}
.days li.inactive{
  color: #aaa;
}
.days li.active{
  color: #fff;
}
.days li::before{
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  height: 40px;
  width: 40px;
  z-index: -1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.days li.active::before{
  background: #ff6000;
}
.days li:not(.active):hover::before{
  background: #f2f2f2;
}
/* CSS for the "past" class */
.past {
    color: #999; /* Change the text color to gray for past dates */
    pointer-events: none; /* Disable pointer events for past dates */
    background-color: #f2f2f2; /* Set a background color for past dates (optional) */
    /* Add any additional styling you want for past dates here */
}
