.daySelector {
  display: flex;
  background-color: #e9ecef;
  overflow-x: auto;
}

.dayOption {
  padding: 15px 20px;
  border: none;
  background: transparent;
  font-size: 1em;
  font-weight: 600;
  color: #6c757d;
  cursor: pointer;
  border-top: 2px solid transparent;
  white-space: nowrap;
}

.dayOption.dayActive {
  color: #00a651;
  border-top: 2px solid #00a651;
}

.scheduleItem {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #e9ecef;
  align-items: center;
  column-gap: 2em;
}

.scheduleTime {
  font-size: 1.2em;
  font-weight: 700;
  color: #1e2235;
  flex-shrink: 0;
}

.scheduleImage {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
}

.scheduleImage > img {
  width: 100%;
  height: 100%;
}

.scheduleItems {
  padding-left: 30px;
  padding-right: 30px;
}

.daySchedule {
  display: none;
}

.daySchedule.daySelected {
  display: block;
}

.scheduleInfomation {
  flex-grow: 1;
}

.scheduleInfomation > h3 {
  font-size: 1.2em;
  color: #212529;
  margin-bottom: 5px;
}

.scheduleInfomation > h3 {
  font-size: 1.2em;
  color: #212529;
  margin-bottom: 5px;
}

.scheduleInfomation > p {
  font-size: 0.9em;
  color: #6c757d;
  line-height: 1.1;
}

.dayDate {
  background-color: #e9ecef;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #6c757d;
}

.dayDate > h2 {
  margin-top: 0;
  margin-bottom: 0;
}

@media screen and (max-width: 600px) {
  .scheduleItem {
    flex-direction: column;
  }
}

body {
  overflow-y: hidden;
}

.announcementBlock {
  border-left: 4px solid #9eeaf9;
  background-color: #cff4fc;
  padding: 16px;
  max-width: 100%;
  border-radius: 15px;
  margin-bottom: 16px;
}

.announcementTitle {
  color: #05518d;
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 0;
}

.announcementBody {
  margin: 0;
  font-size: 14px;
  color: #05518d;
}

.programmeBadge {
  background-color: #00a651;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 15px;
  vertical-align: middle;
  color: white;
  font-weight: normal;
  margin-left: 4px;
  line-height: 15px;
  display: inline-block;
}
