body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.col-calendar {
  display: flex;
  justify-content: center;
}

.wrapper-calendar-date {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  width: 100%;
  max-width: 450px;
}

.header-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 20px;
  width: 100%;
}

.month {
  font-size: 20px;
  font-weight: 600;
}

.nav-btn {
  font-size: 20px;
  cursor: pointer;
  background: none;
  border: none;
  color: white;
}

.calendar-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 340px;
}

@media (max-width: 1200px) {
  .calendar-container {
    height: 290px;
  }
}

@media (max-width: 991px) {
  .calendar-container {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .calendar-container {
    height: 310px;
  }
}

@media (max-width: 576px) {
  .calendar-container {
    height: 300px;
  }
}

@media (max-width: 400px) {
  .calendar-container {
    height: 250px;
  }
}

.calendar-grid {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.weekdays {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 8px;
  text-align: center;
  font-weight: bold;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 5px;
}

.day {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.day:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.event-yellow {
  background-color: #e5c543;
  color: #333;
  font-weight: bold;
}

.event-red {
  background-color: #e91e63;
  color: #fff;
  font-weight: bold;
}

.today {
  background-color: #50fa7b;
  color: #000;
  font-weight: bold;
}

.empty {
  visibility: hidden;
  pointer-events: none;
}

/* SLIDE ANIMATION */
.slide-enter {
  transform: translateX(100%);
  opacity: 0;
}

.slide-enter-left {
  transform: translateX(-100%);
  opacity: 0;
}

.slide-active {
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.slide-exit {
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.slide-exit-right {
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.event-wrapper-detail {
  visibility: hidden;
}

.slide-event-swiper {
  width: 100%;
  aspect-ratio: 2 / 1;
  position: relative;
  overflow: hidden;
}

.slide-event-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Styling khusus Swiper dalam .slide-event-wrapper */
.slide-event-wrapper .swiper-button-prev,
.slide-event-wrapper .swiper-button-next {
  color: white !important; /* Ubah warna panah ke putih */
  width: 48px;
  height: 48px;
}

.slide-event-wrapper .swiper-button-prev::after,
.slide-event-wrapper .swiper-button-next::after {
  font-size: 28px !important; /* Perbesar ukuran icon panah */
}

.slide-event-wrapper .swiper-pagination-bullet {
  background: white !important; /* Ubah warna bullet ke putih */
  width: 12px;
  height: 12px;
  opacity: 0.6;
}

.slide-event-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.3);
}

.event-date {
  position: relative;
  background-color: var(--color-yellow);
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  padding: 5px 15px;
}

.event-date-content {
  position: relative;
  z-index: 2;
}

.event-date-bulan {
  text-align: center;
  color: var(--color-primary-blue);
}

.event-date-tgl {
  text-align: center;
  font-size: 40px;
  margin-top: -10px;
  font-weight: bold;
  color: var(--color-primary-blue);
}
