.calendar-strip {
  width: 100%;
  padding: 10px 4px 0;
  height: 90px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.calendar-strip__inner {
  display: flex;
  gap: 10px;
  min-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 calc(50% - 32px);
  scroll-padding: 0 calc(50% - 32px);
}

.calendar-strip__inner::-webkit-scrollbar {
  display: none;
}

.calendar-strip__active {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
}

.calendar-day {
  flex: 0 0 64px;
  text-align: center;
  padding: 8px 4px;
  border-radius: 18px;
  background: #f8f9fb00;
  border: 1px solid transparent;
  position: relative;
  cursor: pointer;
  width: 64px;
  height: 64px;
  color: #1b1b1b;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.calendar-day__dow {
  margin: 0;
  font-weight: 700;
  font-size: 8px;
  color: #374151;
}

.calendar-day__date {
  margin:0;
  font-size: 14px;
  font-weight: 800;
  color: #1B1B1B;
}

#calendarActiveDay .calendar-day__dow {
  margin-top: 7px;
}

.calendar-day__badge {
  position: absolute;
  top: 0px;
  right: -6px;
  min-width: 16px;
  height: 16px;
  padding: 0 6px;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  font-weight: 400;
  font-size: 8px;
  display: grid;
  place-items: center;
}

.calendar-day__badge--past {
  background: #3DD261;
}

.calendar-day--active {
  background: linear-gradient(180deg, #f9fbff, #eef3ff);
  box-shadow: 0 10px 14px rgba(0, 0, 0, 0.08);
}
