.event-category-item {
  border-bottom: 1px solid #eaeaea;
  padding: 20px 2px;
}

.event-category-item:hover {
  background-color: #F2F1EB;
}

.event-category-title {
    color: #1f305a;
    transition: color 0.3s ease;
    font-weight: 700;
    line-height: 25px;
    font-size: 20px;
    text-decoration: none;
}

.event-category-image {
    height: auto !important;
    object-fit: cover !important;
}

.event-category-time-location {
    margin-top: 15px;
    color: rgb(30, 45, 90);
    margin-bottom: 0;
}

.events-date-title-picker {
    font-size: 20px;
    color: #1f305a;
    font-weight: 700;
    margin: 15px 60px;
}

/* Air Datepicker Custom Styles */
/* Calendar lớn */
.calendar-container {
  width: 90%;
}

.air-datepicker {
  width: 90% !important;
  font-size: 16px;
}

.air-datepicker.-inline- {
  background-color: #fff8ee;
  padding: 10px;
}

.air-datepicker-nav--title {
  color: #005f69;
}

.air-datepicker-nav--title i {
  color: #005f69 !important;
}


.air-datepicker-cell {
  width: 40px !important;
  height: 40px !important;
  line-height: 45px !important;
  font-size: 16px;
  color: #005f69 !important;
}

.air-datepicker-nav {
  height: 50px;
  font-size: 18px;
}

.air-datepicker-body--day-name {
  height: 30px;
  line-height: 30px;
  color: #005f69 !important;
  font-size: 16px !important;
}

/* Style cho ngày có sự kiện - màu cam */
.air-datepicker-cell.-day-.has-event-day {
  background-color: #f26f33 !important; /* Màu cam */
  color: white !important;
  font-weight: bold !important;
  border-radius: 30px;
}

/* Hiệu ứng hover cho ngày có sự kiện */
.air-datepicker-cell.-day-.has-event-day:hover {
  background-color: #ff6600 !important; /* Cam đậm hơn khi hover */
  border-color: #e55a00 !important;
  cursor: pointer !important;
}

/* Khi ngày có sự kiện được chọn */
.air-datepicker-cell.-day-.has-event-day.-selected- {
  background-color: #e55a00 !important; /* Cam đậm khi được chọn */
  color: white !important;
  border-color: #cc4d00 !important;
}

/* Ngày hiện tại nếu có sự kiện */
.air-datepicker-cell.-day-.has-event-day.-current- {
  background-color: #f26f33 !important;
  color: white !important;
  /* border: 3px solid #ff6600 !important; */
}

.air-datepicker-body--cells.-days- {
  grid-auto-rows: 45px !important;
}

.air-datepicker-cell.-selected- {
  background-color: #ff8c00 !important;
  color: #fff !important;
  border-radius: 20px;
}

.air-datepicker-body--cells.-months- {
    grid-template-columns: repeat(4, 1fr) !important;
    grid-auto-rows: 50px !important;
}
/* Styling cho calendar */
.has-event-day {
  background-color: #007bff !important;
  color: white !important;
  font-weight: bold;
}

.has-event-day:hover {
  background-color: #0056b3 !important;
}

/* Styling cho no events message */
.no-events-message {
  border: 2px dashed #ddd;
  border-radius: 10px;
  margin: 20px 0;
  padding: 2rem;
}

.no-events-message i {
  opacity: 0.5;
}

/* Loading state khi filter */
.events-filtering {
  /* opacity: 0.6; */
  /* pointer-events: none; */
  transition: opacity 0.3s ease;
}

/* Animation cho filtered results */
.event-category-item {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

@media (max-width: 1200px) {
  .events-date-title-picker {
    font-size: 18px;
    margin: 15px;
  }

  .air-datepicker-cell {
    width: 30px !important;
    height: 30px !important;
  }
  .air-datepicker-body--day-name {
    height: 45px;
  }
}

@media (max-width: 768px) {
  .event-category-item {
    padding: 10px 2px;
  }
  .event-category-title {
    font-size: 18px;
  }
  .event-category-time-location {
    font-size: 14px;
  }

  .events-date-title-picker {
    text-align: center;
    font-size: 18px;
    margin: 20px;
  }

  .air-datepicker-nav--title {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .event-category-item {
    padding: 5px 2px;
    gap: 10px;
  }
  .event-category-title {
    font-size: 18px;
  }
  .event-category-time-location {
    font-size: 14px;
  }

  .events-date-title-picker {
    text-align: center;
  }

  .calendar-container {
    width: 95%;
  }

  .air-datepicker {
    width: 95% !important;
    font-size: 16px;
  }
}