/* Custom FullCalendar styles for Sigma Study */

/* Edit mode - highlight selection (darker green) */
.fc-highlight {
  background: rgba(46, 125, 50, 0.25) !important;
  border: 2px dashed #2e7d32 !important;
}

/* Smooth hover effects - only for booking events */
.fc-event {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hover only on actual events (bookings), not background */
.fc-timegrid-event:hover {
  transform: scale(1.02);
  opacity: 0.95;
  z-index: 10;
}

/* No hover on background events (availability) */
.fc-bg-event {
  pointer-events: none;
}

/* Remove hover effect on time slots */
.fc-timegrid-slot:hover {
  background-color: transparent;
}

/* Make events more readable */
.fc-event-title {
  font-weight: 500;
}

/* Better spacing */
.fc-timegrid-event-harness {
  margin: 1px;
}
