/* -------------------------------------------------------------------------- */
/*                                Falcon Button                               */
/* -------------------------------------------------------------------------- */
/* prettier-ignore */
/* Tambahkan variasi font lainnya */

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  /* hanya horizontal yang di-lock */
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Section jadwal */
#jadwalSection {
  flex-shrink: 0;
  min-height: calc(100vh - 40px);
  /* dikurangi tinggi reminder */
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
}

/* Reminder Section */
#reminderSection {
  position: sticky;
  bottom: 0;
  height: 40px;
  width: 100%;
  background-color: #f8f9fa;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: black;
  z-index: 9999;
}

#ticker {
  overflow: hidden;
  width: 100%;
}

.ticker-move {
  display: flex;
  width: max-content;
  animation: moveText 45s linear infinite;
}

.ticker-move span {
  padding-right: 100px;
  /* Jarak antar teks */
  white-space: nowrap;
}

/* Animasi super smooth */
@keyframes moveText {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
