.slideshow-container {
  position: relative;
  width: 100%;
  max-height: 100vh;
  overflow: hidden;
  background-color: #001f4d;
  border-bottom: 3px solid #00ffcc;
}

.slide {
  display: none;
}

.slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  border-radius: 0px;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 12px;
  color: #00ffcc;
  font-weight: bold;
  font-size: 24px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 3px;
  user-select: none;
  transform: translateY(-50%);
  transition: background 0.3s;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .slide img {
    height: 200px;
  }
}
footer {
  background-color:rgb(66, 66, 66) ;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 12px;
}


@media (max-width: 600px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
  }

  #calendar-container {
    margin-top: 15px;
    min-width: unset;
  }
}


/* ==== CALENDAR ==== */
/* === CALENDAR CARD === */
#calendar-container {
  display: flex;
  justify-content: flex-end;
  padding: 20px;
  
}


.calendar {
  width: 100%;
  max-width: 360px;

  background: linear-gradient(to bottom, #0e45bc, #00265f);
  border-radius: 16px;
  padding: 18px;

  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  color: #ffffff;

  font-family: "Segoe UI", Arial, sans-serif;
}

/* === MONTH TITLE === */
.calendar h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

/* === TABLE === */
.calendar table {
  width: 100%;
  table-layout: fixed;   /* 🔥 THIS FIXES IT */
  border-collapse: separate;
  border-spacing: 6px;
}

/* === DAY HEADERS === */
.calendar th {
  font-size: 13px;
  font-weight: 600;
  color: #cfe0ff;
  padding-bottom: 6px;
}

/* === DATE CELLS === */
.calendar th,
.calendar td {
  width: 14.28%;
  text-align: center;
}

.calendar td {
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 530;
}


/* === TODAY === */
.calendar td.today {
  background: #00c897;
  color: #00265f;
  font-weight: 700;
}

/* === HOVER (DESKTOP ONLY) === */
@media (hover: hover) {
  .calendar td:hover {
    background: rgba(255,255,255,0.18);
  }
}


/*mobile*/
@media (max-width: 480px) {

  .calendar {
    max-width: 100%;
    padding: 14px;
    border-radius: 14px;
  }

  .calendar h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .calendar th {
    font-size: 12px;
  }

  .calendar td {
    font-size: 13px;
    padding: 8px 0;
  }
  .calendar table {
    border-spacing: 4px;
  }


}
