* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  color: #1a1a1a;
}

body {
  font-family: "Chiron GoRound TC", sans-serif;
  background: #f8f5f2;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 40px;
}

.calendar-wait {
  text-align: left;
}

.calendar-wait h1 {
  font-size: 20px
  margin-bottom: 8px;
}

.calendar-wait p {
  font-size: 16px;
  margin-bottom: 16px;
}

.back-link {
  display: inline-block;
  padding: 6px 12px
  border: 1px solid #000000;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.back-link:hover {
  background: #000000;
  color: #f8f5f2;
}
