/* === EVENTI comuni a tutte le view === */
.fc-event-title,
.fc-event-time,
.fc-event-trainer {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}

.fc-event-trainer {
  font-size: 0.75em;
  color: var(--text-color); /* testo chiaro uniforme */
  padding-top: 2px;
}

/* ✅ Stile per pallino colorato */
.color-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 4px var(--primary-color); /* glow blu elettrico */
}

/* ✅ Layout tempo + pallino + spunta */
.fc-event-dot-time {
  font-size: 0.8rem;
  line-height: 1.2;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
  color: var(--primary-color); /* orario in blu elettrico */
}

/* ✅ Stile per orario sempre leggibile */
.fc-event-dot-time span,
.fc-event-time span {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

/* ✅ Titolo adattabile */
.fc-event-title {
  font-size: 0.75rem;
  color: var(--text-color); /* testo chiaro uniforme */
}

/* ✅ Tooltip per spunta */
.text-success[title] {
  cursor: help;
  color: var(--secondary-color); /* verde sostituito da blu secondario */
}

/* ✅ Miglioramento spazio spunta */
.fc-event-time .text-success {
  margin-right: 0.25rem;
}

/* ✅ Scroll modale edit */
.modal-dialog-scrollable .modal-body {
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}
