/**
 * High 5 Connect CRM — iCal / Setmore Calendar Styles
 * Popup detail view and "+N more" overflow indicator.
 * Split from calendar.css to keep it under the 350-line cap.
 */

/* ─── "+N more" overflow indicator per day column ──────────── */
.cal-more-count {
  position: absolute;
  bottom: 1px;
  width: calc(100% / 7 - 4px);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-label);
  text-align: center;
  pointer-events: auto;
  cursor: default;
  z-index: 4;
}

/* ─── iCal Appointment Popup ───────────────────────────────── */
.cal-ical-detail {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  max-height: 60vh;
  overflow-y: auto;
}

.cal-ical-row {
  display: flex;
  gap: var(--s3);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.cal-ical-label {
  flex-shrink: 0;
  width: 72px;
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-label);
  padding-top: 1px;
}

.cal-ical-value {
  color: var(--text-primary);
  word-break: break-word;
}

.cal-ical-link {
  color: var(--accent);
  text-decoration: none;
}

.cal-ical-link:hover {
  text-decoration: underline;
}
