/* Gallery container styling */
.fc-gallery-container {
  padding: 20px;
  background: #f9f9f9;
  border-radius: 4px;
  min-height: 200px;
  display: none; /* hidden until gallery mode */
}

/* Style the "Back to calendar" button */
.fc-gallery-exit {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

/* Optional active styling of gallery button in toolbar */
body.calendar-gallery-mode .fc-eventList-button {
  background-color: #1976d2 !important;
  color: #fff !important;
}

/* Loading / error states */
.fc-gallery-container .loading,
.fc-gallery-container .error {
  padding: 20px 0;
  text-align: center;
  font-size: 16px;
}

.fc-gallery-container .error {
  color: #d32f2f;
}
