.calendar-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.calendar-container::-webkit-scrollbar {
  display: none;
}
.calendar-viewport {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;

  scrollbar-width: none;
  -ms-overflow-style: none;
}
.calendar-viewport::-webkit-scrollbar {
  display: none;
}
#calendar-days {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  padding: 12px 16px;

  width: max-content;
  margin: 0 auto;           
}

.calendar-day {
  scroll-snap-align: center;
  cursor: pointer;
  user-select: none;

  width: 56px;
  height: 71px;
  padding: 8px 10px;
  box-sizing: border-box;

  border-radius: 150px;     
  background: transparent;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  transition: background .15s ease, opacity .15s ease;
}

.calendar-day[data-state="selected"] {
  background: #31333B !important;
}

.calendar-weekday {
  width: 25px;
  height: 15px;

  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;

  color: #7F808B !important;
}

.calendar-number {
  margin-top: 8px;

  width: 25px;
  height: 24px;

  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;

  color: #7F808B !important;
}

.calendar-day[data-state="today"] {
  background: #31333B !important;
}

.calendar-day[data-state="today"] .calendar-weekday,
.calendar-day[data-state="today"] .calendar-number,
.calendar-day[data-state="selected"] .calendar-weekday,
.calendar-day[data-state="selected"] .calendar-number {
  color: #FFFFFF !important;
}

.calendar-day[data-state="default"]:hover {
  background: rgba(49, 51, 59, 0.35);
}
