.time-table-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.time-table-point {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.time-table-point img {
  max-width: 100%;
}

.time-table-info-text {
  font-size: var(--mini-heading-size);
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
}

.time-table-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 40px;
}

.time-table-day-container {
  position: relative;
}

.time-table-timeline-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.time-table-timeline-wrapper img {
  max-width: 100%;
}

.time-table-n-wrapper {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0; 
  width: fit-content;
  height: auto;
  animation: floating 1.5s ease-in-out infinite alternate-reverse;
}

@keyframes floating {
  0% {
    transform: translateY(-3%);
  }
  100% {
    transform: translateY(3%);
  }
}

.time-table-n-wrapper img {
  max-width: 40vw;
}

.time-table-color-info-wrapper {
  width: 100%;
  height: auto;
}

.time-table-color-info-wrapper img {
  max-width: 100%;
}
@media screen and (max-width:760px) {
  .time-table-info-text {
    text-align: left;
    padding-inline: 16px;
  }
}