/* calendar-slider.css */

/* 1) Обёртка: одна пунктирная рамка и прячем выступающие слайды */
.calendar-events-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px dashed #6b8e23;
  padding: 16px;
  box-sizing: border-box;
}

/* 2) Скользящая лента страниц */
#calendar-events {
  display: flex;
  flex-direction: row;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  background: transparent !important;
  border: none !important;
  margin: 0;
  padding: 0;
}

/* 3) Каждая “страница” из 3 игр */
#calendar-events .event-page {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scroll-snap-align: start;
}

/* 4) Одиночная карточка */
#calendar-events .event-item {
  display: flex;
  align-items: center;
  padding: 6px 8px;
  border-bottom: 1px solid #444;
}
#calendar-events .event-item:last-child {
  border-bottom: none;
}

/* 5) Цвет текста — полностью белым */
#calendar-events .event-time,
#calendar-events .event-link {
  color: #fff !important;
}

/* 6) Точки-пейджеры */
#calendar-dots {
  position: absolute !important;
  bottom: 8px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  gap: 6px !important;
  z-index: 10;
}
#calendar-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #444;
  cursor: pointer;
}
#calendar-dots .dot.active {
  background-color: #6b8e23;
}
/* Цвет «Нет игр…» как у времени — белый */
#calendar-events .no-events {
  color: #fff !important;
}
