#schedule-section {
  padding: 3rem 1rem;
  text-align: center;
  position: relative;
  background-color: #edf7fd;
  height: 100%;
  min-height: 60vh;
}

#schedule-section h1 {
  color: #07486E;
}

.schedule-section-container {
  position: relative;
  background: #daf1ff;
  border-radius: 14px;
  max-width: 870px;
  margin: 0 auto;
}

.schedule-header {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  white-space: nowrap;
  overflow-x: auto;
  border-radius: 10px 10px 14px 14px;
}

.schedule-header button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

#calender-pins {
  display: flex;
  justify-content: space-between;
  position: absolute;
  inset: 0;
  top: -2rem;
  margin: 0 3.5rem;
  overflow: visible;
}

#calender-pins .calender-pin {
  width: 1rem;
  background: #002033;
  border-radius: 0.75rem;
  width: 1rem;
  height: 2.75rem;
  z-index: 1;
}

.schedule-header .schedule-day-item {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 6rem 1.25rem 1rem;
  font-size: 1rem;
  line-height: 1.75rem;
  text-align: left;
  outline: none;
  color: rgba(0, 32, 51, 0.3);
  border-right: 0.5px solid #00a2ff;
  background: #7dcdfc;
}

#schedule-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

#day-selector {
  display: flex;
  overflow-x: auto;
  background: #7AC8F5;
}


/* ===== Scrollbar CSS ===== */
/* Firefox */
#day-selector {
  scrollbar-width: auto;
  scrollbar-color: #69c6fb #ffffff;
}

/* Chrome, Edge, and Safari */
#day-selector::-webkit-scrollbar {
  height: 10px;
}

#day-selector::-webkit-scrollbar-track {
  background: #ebf8ff;
}

#day-selector::-webkit-scrollbar-thumb {
  background-color: #b8e5ff;
  border-radius: 20px;
  border: 3px solid #ebf8ff;
}

#day-selector::-webkit-scrollbar-thumb:hover {
  background: #60c5ff;
}

#day-selector .active {
  color: #002033;
}

.forward-backward-buttons {
  display: flex;
  border-radius: 0 14px 14px 0;
}

.forward-backward-buttons .forward-backward-button {
  padding: 1rem;
  color: #fff;
  background: #72cbff;
}

.forward-backward-buttons .forward-backward-button:hover {
  background: #29b1ff;
}

.forward-backward-buttons .forward-backward-button:disabled {
  opacity: 0.2;
}

.forward-backward-buttons #right-button {
  border-bottom-right-radius: 14px;
}

#schedule-body .hidden {
  display: none;
}

#schedule-body .schedule-item {
  display: flex;
  padding: 1rem;
  gap: 0.75rem;
  border-bottom: 0.8px solid #7AC8F5;
  /* border-bottom: 6px solid #e4f6ff; */
  border-radius: 10px;
}

#schedule-body .schedule-item .schedule-item-time {
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-align: left;
  white-space: nowrap;
  width: 5.5rem;
  color: #1673A8;
}

#schedule-body .schedule-item .schedule-item-desc-title {
  font-size: 1.125rem;
  line-height: 1.75rem;
  /* color: #0088d6; */
  color: #002033;
  margin: 0;
  width: 100%;
  text-align: left;
}

#schedule-body .schedule-item .schedule-item-desc-text {
  color: #1673A8 !important;
}

#schedule-body .schedule-item .schedule-item-desc {
  text-align: left;
}

#schedule-body .schedule-item .schedule-item-desc ul {
  list-style: none;
  padding: 0;
}

#schedule-body .schedule-item .schedule-item-desc li {
  margin: 1rem 0;
  font-size: 0.9rem;
}

#schedule-body .schedule-item .schedule-item-desc span {
  color: #0893E3;
}

@media (min-width: 768px) {
  #schedule-section {
    padding: 2.5rem;
  }

  .schedule-header .schedule-day-item {
    padding: 2rem 8rem 2rem 3rem;
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .forward-backward-buttons .forward-backward-button {
    padding: 2.6rem;
  }

  #schedule-body .schedule-item {
    gap: 2rem;
  }

  #schedule-body .schedule-item .schedule-item-time,
  #schedule-body .schedule-item .schedule-item-desc-title {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  #calender-pins {
    margin: 0 7rem;
  }

  #calender-pins .calender-pin {
    width: 1.5rem;
    height: 4rem;
  }
}

@media (min-width: 1024px) {
  #schedule-section {
    padding: 3rem 8rem;
  }
}