.calendar-header {
  /* background: linear-gradient(to right, #1a237e, #3949ab); */
  color: #707070;
  padding: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-buttons {
  display: flex;
  gap: 10px;
}

.nav-btn {
  color: #707070;
  font-size: 20px;
  background: transparent;
  /* background-color: rgba(255, 255, 255, 0.2); */
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* .nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
} */
.month-year {
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
}

.weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background-color: #f0f0f0;
  /* padding: 15px 0; */
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  background-color: #A53880;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.weekday {
  padding: 5px;
  color: #ffffff;
  font-size: 26px;
}

.weekday.sun {
  color: #FFCBCB;
}

.weekday.sat {
  color: #7EF0FF;
}

.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background-color: #f0f0f0;
  border-bottom-left-radius: 10px;
  overflow: hidden;
  border-bottom-right-radius: 10px;
}

.day {
  background-color: white;
  min-height: 60px;
  padding: 5px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
}
.day.event-clean {
  position: relative;
}
.day.event-clean::after {
  position: absolute;
  content: "";
  background: url(../images/ic_calenda_event.svg) no-repeat;
  background-size: 100% 100%;
  width: 21.52px;
  height: 20.4px;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
}
.day.active {
  border: 1px solid #A53880;
}

.day:hover {
  background-color: #f9f9f9;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.day-number {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 5px;
  color: #707070;
}

.day.sun .day-number {
  /* color: #e53935; */
}

.day.sat .day-number {
  /* color: #1e88e5; */
}

.today .day-number {
  color: #A53880;
}

.event {
  font-size: 0.8rem;
  padding: 3px 6px;
  border-radius: 4px;
  margin-top: 5px;
  color: white;
}

.holiday {
  background-color: #e53935;
}

.special {
  background-color: #43a047;
}

.other-month {
  color: #bbb;
  background-color: #fafafa;
  opacity: 0.5;
}

.past-day {
  opacity: 0.5;
}

.calendar-info {
  background-color: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.info-title {
  color: #1a237e;
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.today-legend {
  background-color: #1a237e;
}

.holiday-legend {
  background-color: #e53935;
}

.special-legend {
  background-color: #43a047;
}

.current-date {
  margin-top: 20px;
  font-size: 1.1rem;
  color: #555;
  padding: 10px;
  background-color: #f8f9fa;
  border-radius: 6px;
}

@media screen and (max-width: 1919px) {
  .month-year {
    font-size: 15px;
  }
  .nav-btn {
    font-size: 16px;
  }
  .weekday {
    font-size: 21px;
  }
  .day-number {
    font-size: 14px;
  }
  .day.event-clean::after {
    width: 17px;
    height: 17px;
  }
  .day {
    min-height: 50px;
  }
}
@media screen and (max-width: 1599px) {
  .month-year {
    font-size: 12px;
  }
  .nav-btn {
    font-size: 13px;
  }
  .weekday {
    font-size: 17px;
    padding: 2px;
  }
  .day-number {
    font-size: 12px;
  }
  .day.event-clean::after {
    width: 14px;
    height: 14px;
  }
  .day {
    min-height: 40px;
    padding: 2px;
  }
}
@media (max-width: 768px) {
  .calendar-header {
    /* flex-direction: column; */
    gap: 5px;
  }
  .event {
    padding: 2px 4px;
  }
  .month-year {
    font-size: 15px;
  }
  .nav-btn {
    font-size: 15px;
  }
  .weekday {
    font-size: 20px;
    padding: 2px;
  }
  .day-number {
    font-size: 13px;
  }
  .day.event-clean::after {
    width: 16px;
    height: 16px;
  }
  .day {
    min-height: 50px;
    padding: 2px;
  }
}
@media (max-width: 480px) {
  .weekday {
    padding: 8px 0;
  }
}

/*# sourceMappingURL=calendar.css.map */
