body {
  font-family: 'Arial', sans-serif;
  text-align: center;
  background: #333;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#h1{
  color: #fff;
  font-size: 3em;
}

#p{
    color: #fff;
    font-size: 1.3em;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 20px;
  max-width: 900px;
  margin: auto;
}

.day {
  border: 1px solid #ccc;
  padding: 10px;
  background: #fff3cd;
  border-radius: 8px;
  min-height: 100px;
  position: relative;
}

.locked {
  background: #eee;
  color: #aaa;
  cursor: not-allowed;
}

.day .date {
  font-weight: bold;
}

.month-header {
grid-column: 1 / -1;
font-weight: bold;
margin-top: 2rem;
font-size: 1.2rem;
color: #ffffff;
text-align: left;
}

.day.clickable {
  cursor: pointer;
  background: linear-gradient(-45deg, #fda1ff 0%, #befeff 100% );
  /*background: linear-gradient(-45deg, #fedeff 0%, #d5f8f8 100% );*/
  transition: all 1s;
  color: #282828;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}

.day.clickable:hover {
  background: linear-gradient(-45deg, #fda1ff 0%, #befeff 100% );
  color: #474747;
  transition: all 1s;
}

.day.clickable::after{
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, #fc00ff 0%, #00dbde 100% );
  transform: translate3d(0, 0, 0) scale(0.95);
  filter: blur(20px);
}

.day.clickable:hover::after{
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, #fc00ff 0%, #00dbde 100% );
  transform: translate3d(0, 0, 0) scale(0.95);
  filter: blur(20px);
}

.see-again-button {
  margin-top: 5px;
  padding: 4px 8px;
  font-size: 0.85em;
  border: none;
  border-radius: 4px;
  background-color: #2d9cdb;
  color: white;
  cursor: pointer;
}
.see-again-button:hover {
  background-color: #1c7bbf;
}

#countdown {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.flipdown.flipdown__theme-dark .rotor-group-heading:before {
  color: #fff; !important
}
