html {
  scroll-behavior: smooth;
}
html main {
  padding-bottom: 0;
}

.daily-program {
  width: 100%;
  max-width: 85.7142857143vw;
  margin: 0 auto;
  padding: 20px 20px 0 20px;
}

.page-header {
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}

.page-title h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
}
.page-title p {
  font-size: 1rem;
  margin: 0;
}

.breadcrumbs {
  margin-top: 10px;
  color: #666;
}

.schedule-nav {
  padding: 20px 0;
}
.schedule-nav .nav-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.schedule-nav .nav-item {
  width: 100%;
}
.schedule-nav .toggle-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  width: 100%;
  height: 100%;
}
.schedule-nav .toggle-wrapper.is-community {
  background-color: #d93843;
}
.schedule-nav .toggle-wrapper.is-performance {
  background-color: #007ac0;
}
.schedule-nav .toggle-wrapper.is-mobicul {
  background-color: #f08200;
}
.schedule-nav .toggle-wrapper.is-daily {
  background-color: #00a05a;
}
.schedule-nav .toggle-wrapper.is-future {
  background-color: #4d4d4d;
}
.schedule-nav .toggle-wrapper.is-stage {
  background-color: #5f2788;
}
.schedule-nav .toggle-label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  white-space: nowrap;
}
.schedule-nav .toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.schedule-nav .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.schedule-nav .toggle-switch input:checked + .toggle-slider {
  background-color: #fff;
}
.schedule-nav .toggle-switch input:checked + .toggle-slider:before {
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}
.schedule-nav .toggle-switch input:checked + .toggle-slider:after {
  content: "ON";
  left: 8px;
  opacity: 1;
}
.schedule-nav .toggle-switch input:not(:checked) + .toggle-slider:after {
  content: "OFF";
  right: 6px;
  opacity: 1;
}
.schedule-nav .toggle-switch .toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 30px;
}
.schedule-nav .toggle-switch .toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: #c7b299;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50%;
  z-index: 2;
}
.schedule-nav .toggle-switch .toggle-slider:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 11px;
  font-weight: bold;
  color: #666666;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 1;
}
.schedule-nav .toggle-switch .toggle-text {
  display: none;
}

.controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
  padding: 20px 0;
  margin-bottom: 30px;
}

.date-selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.month-set .month {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  font-weight: bold;
  font-size: 2.5rem;
  padding-bottom: 10px;
}
.month-set .dates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.month-set .dates button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 6.4285714286vw;
  height: 6.4285714286vw;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.month-set .dates button.active {
  background: #333;
  color: #fff;
  border-color: #333;
}
.month-set .dates button.active span {
  color: #fff !important;
}
.month-set .dates button.is-saturday {
  color: #007ac0;
}
.month-set .dates button.is-sunday {
  color: #d93843;
}
.month-set .dates button span:first-child {
  font-size: 2.8571428571vw;
  font-weight: bold;
  line-height: 1.2;
}
.month-set .dates button span:last-child {
  font-size: 1.1428571429vw;
}

.program-group h2 {
  font-size: 30px;
  margin-bottom: 40px;
}

.category-section {
  scroll-margin-top: 10vw;
  position: relative;
  margin: 40px 0 30px 12px;
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.category-header-section {
  position: absolute;
  top: -20px;
  left: -12px;
  z-index: 10;
  background: transparent;
  border-bottom: none;
  display: inline-block;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.category-header {
  width: auto;
  padding: 10px 20px;
  margin: 0;
  border-radius: 12px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: left;
  min-height: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.category-header small {
  font-size: 18px;
  opacity: 1;
  margin-top: 0;
  font-weight: bold;
  display: inline;
}

.category-schedule {
  padding: 0;
}
.category-schedule.no-programs .timeline-wrapper {
  position: relative;
}
.category-schedule.no-programs .scrollable-timelines {
  overflow-x: hidden;
}
.category-schedule.no-programs .timeline-wrapper {
  width: 100% !important;
}

.scrollable-timelines {
  padding: 20px;
  overflow-x: auto;
}

.category-row {
  margin-bottom: 0;
}

.timeline-wrapper {
  background: #fff;
  overflow: visible;
  height: 210px;
}

.timeline-grid {
  position: relative;
  height: 100%;
  width: 100%;
}

.grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #eee;
  z-index: 0;
}

.time-axis {
  position: relative;
  height: 20px;
  margin-top: 10px;
}

.time-labels {
  position: relative;
  width: 100%;
  height: 100%;
}

.time-label {
  position: absolute;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1.5rem;
  color: #666;
}

.program-card {
  position: absolute;
  top: 14px;
  height: 184px;
  background: #fff;
  border: 2px solid;
  border-radius: 8px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 1;
}
.program-card.clickable {
  cursor: pointer !important;
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
}
.program-card.clickable,
.program-card.clickable * {
  cursor: pointer !important;
}
.program-card.clickable:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.program-card.clickable .program-info,
.program-card.clickable .program-info * {
  pointer-events: none;
}

.program-image-placeholder {
  width: 80px;
  height: 80px;
  min-width: 80px;
  background-color: #e0e0e0;
  border-radius: 4px;
  margin-right: 10px;
}

.program-info .session-title {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 5px;
  padding: 4px 12px;
  border-radius: 20px;
  color: white;
}
.program-info .time {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 5px;
  color: #666;
}
.program-info .title {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 5px;
}

.coming-soon-message {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 3rem;
  font-weight: bold;
  color: black;
  text-align: center;
  z-index: 2;
  width: 100%;
  pointer-events: none;
}

.date-selector-dropdown {
  display: none;
  width: 100%;
  padding: 0 5.3333333333vw;
}
.date-selector-dropdown select {
  width: 100%;
  max-width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background-color: #fff;
  font-weight: bold;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-image: url("../img/scroll_down_inverted.svg");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 22px;
}

/* Future Mobility Conference Styles */
.program-group.future-mobility-conference {
  background-color: rgba(199, 178, 153, 0.3);
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  padding-top: 40px;
  padding-bottom: 20px;
}
.program-group.future-mobility-conference .future-mobility-header,
.program-group.future-mobility-conference .category-section {
  scroll-margin-top: 10vw;
  max-width: 85.7142857143vw;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.program-group.future-mobility-conference .category-section {
  margin-top: 0;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.program-group.future-mobility-conference .category-schedule {
  background-color: white;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.future-mobility-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.future-mobility-header h2 {
  margin: 0;
  font-size: 30px;
  font-weight: bold;
}

.venue-tag {
  background-color: transparent;
  border: 2px solid black;
  border-radius: 20px;
  padding: 5px 20px;
  margin-left: 20px;
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .schedule-nav .nav-list {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .schedule-nav .nav-item {
    width: 100%;
  }
  .schedule-nav .toggle-wrapper {
    width: 100%;
  }
  .category-section {
    margin: 40px 0 30px 0;
  }
  .category-section .category-header-section {
    position: static;
    margin: 0;
    border-radius: 8px;
    display: block;
    width: 100%;
  }
  .category-section .category-header {
    padding: 8px 16px;
    font-size: 4.2666666667vw;
    border-radius: 8px;
    gap: 8px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
  }
  .category-section .category-header small {
    font-size: 3.7333333333vw;
    display: block;
    width: 100%;
  }
  .daily-program {
    padding: 0 0 20px 0;
    max-width: calc(100% - 5.3333333333vw * 2);
    margin-inline: 5.3333333333vw;
  }
  .date-selector {
    display: none;
  }
  .date-selector-dropdown {
    display: block;
    padding: 0;
  }
  .program-group.future-mobility-conference .future-mobility-header,
  .program-group.future-mobility-conference .category-section {
    padding: 0;
    scroll-margin-top: 13.671875vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .program-group.future-mobility-conference .future-mobility-header .venue-tag,
  .program-group.future-mobility-conference .category-section .venue-tag {
    margin-left: 0;
    margin-top: 10px;
  }
}/*# sourceMappingURL=style.css.map */