/* CSS cho calendar filtering */
.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: 1;
  /* pointer-events: none; */
  transition: opacity 0.3s ease;
}

/* Animation cho filtered results */
.event-category-item {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Calendar container styling */
.calendar-container {
  padding: 15px;
  /* background: #f8f9fa; */
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Air Datepicker custom styling */
.air-datepicker {
  font-family: inherit;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.air-datepicker-cell.-current- {
  background: #e3f2fd;
  color: #1976d2;
}

.air-datepicker-cell.-selected- {
  background: #1976d2;
  color: white;
}

/* Responsive calendar */
@media (max-width: 768px) {
  .calendar-container {
    padding: 10px;
    width: 100%;
  }
}
