      input[type="date"]::-webkit-calendar-date-picker-indicator {
        filter: invert(1);
      }

      .form-container-dmy {
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 15px;
      }

      .form-container-dmy {
        text-align: center;
      }

      #descriptionBox {
          display: none;
      }

      .note {
          font-size: 12px;
          color: #555;
          margin-top: 10px;
      }


       .site-wrapper {
        display: flex;
        flex-direction: column;
        min-height: auto;
      }

      main {
        min-height: calc(100vh - 200px);
      }

.date-container {
  display: flex;
  align-items: center;
  flex-direction: column;
}

      .astro-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  margin-bottom: 10px;
}

.astro-carousel button {
  background: #ffffff20;
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
}

.astro-carousel button:hover {
  background: #ffffff40;
}

.astro-display {
  min-width: 240px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
}

.carousel-container {
  position: relative;
  max-width: 900px;
  margin: 2rem auto;
}

.carousel-slide {
  display: none;
  transition: opacity 0.5s ease;
}

.carousel-slide.active {
  display: block;
}

.carousel-nav {
  text-align: center;
  margin-top: 1rem;
  display: flex;
  margin: auto;
  justify-content: center;
}

.carousel-nav button {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  border-radius: 100px;
  cursor: pointer;
}

