/**
 * Scheduling capability — view-content CSS.
 *
 * Layered on top of the shared sample-panel chrome in bento.css. Adds:
 *   - Calendar view: day timeline, week 7×6 grid, month 7×5 grid
 *   - Booking blocks (coloured left border per team)
 *   - Agenda chronological list rows
 *   - Team availability bars + stat chips
 *   - Customer-side appointment rows with status badges
 *   - Sync integration rows with confirmation-email toggles
 *   - Two new promise-tile glyphs (--sync, --avatar-stack)
 *
 * Loaded conditionally on body.vita-service--scheduling only via
 * wp_enqueue_style in functions.php.
 *
 * Responsive guards (Rule 2): the week grid collapses to a vertical
 * agenda-style list at <720px. Day mode keeps its vertical timeline.
 * Month mode keeps the grid but drops bookings-count text in favour
 * of just dots.
 */

/* ═══════════════════════════════════════════════════════════════════
   CALENDAR VIEW — shared shell
   ═══════════════════════════════════════════════════════════════════ */

body.vita-service--scheduling .vita-cap-sample__view--calendar {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* ── DAY mode — vertical 8am–6pm timeline ────────────────────────── */

.vita-cap-sched-day {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 8px;
	height: 360px;
	color: #fff;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 10px;
	padding: 12px;
}

.vita-cap-sched-day__hours {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 2px 0;
}

.vita-cap-sched-day__hour {
	font-family: var(--wp--preset--font-family--mono, ui-monospace, Menlo, monospace);
	font-size: 9px;
	color: rgba(255, 255, 255, 0.45);
	letter-spacing: 0.04em;
	line-height: 1;
}

.vita-cap-sched-day__lane {
	position: relative;
	border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.vita-cap-sched-day__line {
	position: absolute;
	left: 0;
	right: 0;
	height: 0;
	border-top: 1px dashed rgba(255, 255, 255, 0.05);
	pointer-events: none;
}

/* ── WEEK mode — 7-col × 6-row grid (default) ────────────────────── */

.vita-cap-sched-week {
	display: grid;
	grid-template-columns: 44px repeat(7, minmax(0, 1fr));
	grid-template-rows: 22px repeat(6, minmax(48px, 1fr));
	gap: 3px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 10px;
	padding: 10px;
	color: #fff;
	min-height: 360px;
}

.vita-cap-sched-week__corner {
	/* spacer for top-left intersection */
}

.vita-cap-sched-week__dayhead {
	font-family: var(--wp--preset--font-family--mono, ui-monospace, Menlo, monospace);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.55);
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vita-cap-sched-week__time {
	font-family: var(--wp--preset--font-family--mono, ui-monospace, Menlo, monospace);
	font-size: 9px;
	color: rgba(255, 255, 255, 0.4);
	letter-spacing: 0.04em;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	padding-right: 4px;
	padding-top: 4px;
}

.vita-cap-sched-week__cell {
	background: rgba(255, 255, 255, 0.015);
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.04);
}

/* ── MONTH mode — 7-col × 5-row date grid ────────────────────────── */

.vita-cap-sched-month {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	grid-auto-rows: minmax(54px, 1fr);
	gap: 3px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 10px;
	padding: 10px;
	color: #fff;
	min-height: 360px;
}

.vita-cap-sched-month__dayhead {
	font-family: var(--wp--preset--font-family--mono, ui-monospace, Menlo, monospace);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.55);
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4px 0 6px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.vita-cap-sched-month__cell {
	background: rgba(255, 255, 255, 0.015);
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: 4px;
	padding: 6px 8px 4px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	position: relative;
	min-height: 0;
}

.vita-cap-sched-month__cell.is-blank {
	background: transparent;
	border-color: transparent;
}

.vita-cap-sched-month__num {
	font-family: var(--wp--preset--font-family--mono, ui-monospace, Menlo, monospace);
	font-size: 11px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1;
}

.vita-cap-sched-month__marker {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	display: block;
	margin-top: auto;
}

.vita-cap-sched-month__count {
	font-family: var(--wp--preset--font-family--mono, ui-monospace, Menlo, monospace);
	font-size: 9px;
	color: rgba(255, 255, 255, 0.5);
	position: absolute;
	bottom: 4px;
	right: 6px;
	letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════════════
   BOOKING BLOCKS — shared base + per-mode positioning
   ═══════════════════════════════════════════════════════════════════ */

.vita-cap-sched-booking {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-left: 3px solid #6BE0B8; /* overridden inline per team */
	border-radius: 4px;
	padding: 5px 8px;
	display: flex;
	flex-direction: column;
	gap: 1px;
	font-size: 10px;
	line-height: 1.2;
	overflow: hidden;
	position: relative;
	min-width: 0;
}

.vita-cap-sched-booking__time {
	font-family: var(--wp--preset--font-family--mono, ui-monospace, Menlo, monospace);
	font-size: 9px;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.04em;
}

.vita-cap-sched-booking__cust {
	color: #fff;
	font-weight: 600;
	font-size: 11px;
	letter-spacing: -0.005em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.vita-cap-sched-booking__svc {
	color: rgba(255, 255, 255, 0.65);
	font-size: 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.vita-cap-sched-booking__dot {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #6BE0B8;
}

/* WEEK-mode placement: each booking is itself a grid item. */
.vita-cap-sched-booking--week {
	margin: 1px;
}

/* DAY-mode placement: absolute on a 100% timeline. */
.vita-cap-sched-booking--day {
	position: absolute;
	left: 8px;
	right: 8px;
	min-height: 24px;
}

/* ═══════════════════════════════════════════════════════════════════
   AGENDA VIEW
   ═══════════════════════════════════════════════════════════════════ */

body.vita-service--scheduling .vita-cap-sample__agenda {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.vita-cap-sched-agenda-row {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr) 28px auto;
	gap: 10px;
	align-items: center;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 8px;
	padding: 8px 12px;
	color: #fff;
}

.vita-cap-sched-agenda-row__time {
	font-family: var(--wp--preset--font-family--mono, ui-monospace, Menlo, monospace);
	font-size: 11px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.85);
	background: rgba(255, 255, 255, 0.06);
	border-radius: 999px;
	padding: 3px 8px;
	text-align: center;
	letter-spacing: 0.02em;
}

.vita-cap-sched-agenda-row__main {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.vita-cap-sched-agenda-row__main strong {
	font-family: var(--wp--preset--font-family--sans, ui-sans-serif, system-ui, sans-serif);
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.vita-cap-sched-agenda-row__main small {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.55);
}

.vita-cap-sched-agenda-row__avatar {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0F1B2D;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 700;
	font-size: 11px;
}

.vita-cap-sched-agenda-row__dur {
	font-family: var(--wp--preset--font-family--mono, ui-monospace, Menlo, monospace);
	font-size: 10px;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 0.04em;
	white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════════
   TEAMS VIEW
   ═══════════════════════════════════════════════════════════════════ */

body.vita-service--scheduling .vita-cap-sample__teams {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.vita-cap-sched-team-row {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 10px;
	padding: 12px 14px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	color: #fff;
}

.vita-cap-sched-team-row__head {
	display: grid;
	grid-template-columns: 32px 1fr;
	gap: 10px;
	align-items: center;
}

.vita-cap-sched-team-row__avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0F1B2D;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 700;
	font-size: 13px;
}

.vita-cap-sched-team-row__meta {
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
}

.vita-cap-sched-team-row__name {
	font-family: var(--wp--preset--font-family--sans, ui-sans-serif, system-ui, sans-serif);
	font-weight: 600;
	font-size: 13px;
	color: #fff;
}

.vita-cap-sched-team-row__role {
	font-family: var(--wp--preset--font-family--mono, ui-monospace, Menlo, monospace);
	font-size: 10px;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 0.04em;
}

.vita-cap-sched-team-row__bar {
	position: relative;
	height: 10px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 4px;
	overflow: hidden;
}

.vita-cap-sched-team-row__seg {
	position: absolute;
	top: 0;
	bottom: 0;
	background: #6BE0B8; /* overridden inline per team */
	opacity: 0.85;
	border-radius: 3px;
}

.vita-cap-sched-team-row__ticks {
	display: flex;
	justify-content: space-between;
	font-family: var(--wp--preset--font-family--mono, ui-monospace, Menlo, monospace);
	font-size: 9px;
	color: rgba(255, 255, 255, 0.35);
	letter-spacing: 0.04em;
	padding: 0 2px;
}

.vita-cap-sched-team-row__stats {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.vita-cap-sched-team-row__chip {
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 999px;
	padding: 3px 10px;
	font-family: var(--wp--preset--font-family--mono, ui-monospace, Menlo, monospace);
	font-size: 10px;
	color: rgba(255, 255, 255, 0.6);
	letter-spacing: 0.04em;
}

.vita-cap-sched-team-row__chip strong {
	color: #fff;
	font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════
   CUSTOMERS VIEW — appointment rows with status badges
   ═══════════════════════════════════════════════════════════════════ */

body.vita-service--scheduling .vita-cap-sample__customers {
	display: flex;
	flex-direction: column;
	gap: 6px;
	/* override the operations 2-col card grid */
	grid-template-columns: none;
}

.vita-cap-sched-cust-row {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 8px;
	padding: 10px 14px;
	color: #fff;
}

.vita-cap-sched-cust-row__photo {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: cover;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: block;
}

.vita-cap-sched-cust-row__main {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.vita-cap-sched-cust-row__main strong {
	font-family: var(--wp--preset--font-family--sans, ui-sans-serif, system-ui, sans-serif);
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.vita-cap-sched-cust-row__when {
	font-family: var(--wp--preset--font-family--mono, ui-monospace, Menlo, monospace);
	font-size: 10px;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.04em;
}

.vita-cap-sched-cust-row__badge {
	font-family: var(--wp--preset--font-family--mono, ui-monospace, Menlo, monospace);
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 999px;
	white-space: nowrap;
}

.vita-cap-sched-cust-row__badge--confirmed   { background: rgba(107, 224, 184, 0.18); color: #6BE0B8; }
.vita-cap-sched-cust-row__badge--pending     { background: rgba(255, 200, 80, 0.18);  color: #FFCB57; }
.vita-cap-sched-cust-row__badge--rescheduled { background: rgba(191, 179, 238, 0.20); color: #BFB3EE; }
.vita-cap-sched-cust-row__badge--awaiting    { background: rgba(255, 136, 71, 0.18);  color: #FF8847; }

/* ═══════════════════════════════════════════════════════════════════
   SYNC VIEW — integration rows
   ═══════════════════════════════════════════════════════════════════ */

body.vita-service--scheduling .vita-cap-sample__sync {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.vita-cap-sched-int-row {
	display: grid;
	grid-template-columns: 32px minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 10px;
	padding: 10px 14px;
	color: #fff;
}

.vita-cap-sched-int-row__logo {
	width: 32px;
	height: 32px;
	border-radius: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--wp--preset--font-family--sans, ui-sans-serif, system-ui, sans-serif);
	font-weight: 700;
	font-size: 14px;
	color: #fff;
	letter-spacing: -0.02em;
	text-transform: lowercase;
}

/* Brand-chip backgrounds + mask-image glyphs. SVG sources are the same Simple
   Icons CC0 files used in the Operations integration tile, stored under
   themes/vitasiti/assets/img/brands/. Each chip is the brand colour with a
   white (or brand-coloured for Google) masked mark inside. */
.vita-cap-sched-int-row__logo--google  { background: #ffffff; }
.vita-cap-sched-int-row__logo--outlook { background: #0078D4; }
.vita-cap-sched-int-row__logo--apple   { background: #1D1D1F; }

.vita-cap-sched-int-row__logo {
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.vita-cap-sched-int-row__logo::after {
	content: '';
	display: block;
	width: 22px;
	height: 22px;
	background-color: #ffffff;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 22px 22px;
	mask-size: 22px 22px;
}
.vita-cap-sched-int-row__logo--google::after  {
	background-color: #1A73E8;
	-webkit-mask-image: url('../../img/brands/googlecalendar.svg');
	mask-image: url('../../img/brands/googlecalendar.svg');
}
.vita-cap-sched-int-row__logo--outlook::after {
	-webkit-mask-image: url('../../img/brands/microsoftoutlook.svg');
	mask-image: url('../../img/brands/microsoftoutlook.svg');
}
.vita-cap-sched-int-row__logo--apple::after   {
	-webkit-mask-image: url('../../img/brands/icloud.svg');
	mask-image: url('../../img/brands/icloud.svg');
}

.vita-cap-sched-int-row__meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.vita-cap-sched-int-row__meta strong {
	font-family: var(--wp--preset--font-family--sans);
	font-size: 13px;
	font-weight: 600;
	color: #fff;
}

.vita-cap-sched-int-row__status {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--wp--preset--font-family--mono, ui-monospace, Menlo, monospace);
	font-size: 10px;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.55);
}

.vita-cap-sched-int-row__status::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
}

.vita-cap-sched-int-row__status--live::before {
	background: #6BE0B8;
	box-shadow: 0 0 0 3px rgba(107, 224, 184, 0.18);
}

.vita-cap-sched-int-row__status--warn::before {
	background: #FFCB57;
	box-shadow: 0 0 0 3px rgba(255, 203, 87, 0.18);
}

/* Toggle (label + hidden checkbox + track + thumb + text). */
.vita-cap-sched-int-row__toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-family: var(--wp--preset--font-family--mono, ui-monospace, Menlo, monospace);
	font-size: 10px;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.55);
	user-select: none;
}

.vita-cap-sched-int-row__toggle input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.vita-cap-sched-int-row__track {
	position: relative;
	width: 30px;
	height: 16px;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	transition: background-color 120ms ease;
}

.vita-cap-sched-int-row__thumb {
	position: absolute;
	top: 2px;
	left: 2px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #fff;
	transition: transform 120ms ease;
}

.vita-cap-sched-int-row__toggle.is-on .vita-cap-sched-int-row__track {
	background: #6BE0B8;
}

.vita-cap-sched-int-row__toggle.is-on .vita-cap-sched-int-row__thumb {
	transform: translateX(14px);
}

.vita-cap-sched-int-row__toggle:focus-within .vita-cap-sched-int-row__track {
	outline: 2px solid var(--cap-accent, #DCE7FF);
	outline-offset: 2px;
}

.vita-cap-sched-int-row__toglabel {
	white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════════
   PROMISE TILE GLYPHS — two new shapes for the scheduling page
   ═══════════════════════════════════════════════════════════════════ */

/* SYNC glyph — two arrows in a circle. */
.vita-cap-promise__glyph--sync {
	width: 84px;
	height: 84px;
	margin-top: 18px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.4);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vita-cap-promise__glyph--sync::before,
.vita-cap-promise__glyph--sync::after {
	content: "";
	position: absolute;
	width: 26px;
	height: 14px;
	border: 2px solid rgba(255, 255, 255, 0.85);
	border-radius: 0;
}

.vita-cap-promise__glyph--sync::before {
	top: 12px;
	left: 18px;
	border-top: 0;
	border-right: 0;
	transform: rotate(-45deg);
	clip-path: polygon(0 0, 100% 0, 100% 50%, 50% 50%, 50% 100%, 0 100%);
}

.vita-cap-promise__glyph--sync::after {
	bottom: 12px;
	right: 18px;
	border-bottom: 0;
	border-left: 0;
	transform: rotate(-45deg);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%, 50% 50%, 0 50%);
}

/* AVATAR-STACK glyph — three overlapping circles. */
.vita-cap-promise__glyph--avatar-stack {
	width: 100%;
	height: 84px;
	margin-top: 18px;
	display: flex;
	align-items: center;
	gap: 0;
}

.vita-cap-promise__glyph--avatar-stack span {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.85);
	border: 3px solid currentColor; /* tile's text colour for ring contrast */
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 700;
	font-size: 18px;
	color: inherit;
	margin-left: -16px;
	position: relative;
}

.vita-cap-promise__glyph--avatar-stack span:first-child {
	margin-left: 0;
	z-index: 3;
	background: rgba(255, 255, 255, 0.95);
}

.vita-cap-promise__glyph--avatar-stack span:nth-child(2) {
	z-index: 2;
	background: rgba(255, 255, 255, 0.78);
}

.vita-cap-promise__glyph--avatar-stack span:nth-child(3) {
	z-index: 1;
	background: rgba(255, 255, 255, 0.6);
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — tablet (720-899) and mobile (<720)
   Rule 2: phone reimagining kicks in at <720, NOT <900.
   ═══════════════════════════════════════════════════════════════════ */

/* Tablet (720-899): week grid keeps 7 cols, drops the activity panel
   via shared chrome. Just tighten the booking blocks. */
@media (min-width: 720px) and (max-width: 899.98px) {
	.vita-cap-sched-week {
		grid-template-rows: 22px repeat(6, minmax(42px, 1fr));
	}
	.vita-cap-sched-booking__cust { font-size: 10px; }
	.vita-cap-sched-booking__svc { display: none; }
}

/* Narrow-desktop guard — make month cells legible at sample width. */
@media (max-width: 1199.98px) {
	.vita-cap-sched-month {
		grid-auto-rows: minmax(48px, 1fr);
	}
}

/* Mobile (<720): collapse week grid to vertical agenda list.
   Day mode keeps timeline (still works). Month mode hides count text. */
@media (max-width: 719.98px) {
	.vita-cap-sched-week {
		display: flex;
		flex-direction: column;
		gap: 5px;
		min-height: 0;
		padding: 12px;
	}

	.vita-cap-sched-week__corner,
	.vita-cap-sched-week__dayhead,
	.vita-cap-sched-week__time,
	.vita-cap-sched-week__cell {
		display: none;
	}

	.vita-cap-sched-booking--week {
		grid-column: auto !important;
		grid-row: auto !important;
		margin: 0;
		flex-direction: row;
		align-items: center;
		gap: 10px;
		padding: 8px 10px;
	}

	.vita-cap-sched-booking--week .vita-cap-sched-booking__time {
		min-width: 40px;
	}

	.vita-cap-sched-booking--week .vita-cap-sched-booking__cust { font-size: 12px; }
	.vita-cap-sched-booking--week .vita-cap-sched-booking__svc { display: inline; }
	.vita-cap-sched-booking--week .vita-cap-sched-booking__dot { top: 50%; right: 8px; transform: translateY(-50%); }

	.vita-cap-sched-day { height: 320px; padding: 10px; }
	.vita-cap-sched-day__hour { font-size: 8px; }

	.vita-cap-sched-month {
		grid-auto-rows: minmax(40px, 1fr);
		padding: 8px;
	}
	.vita-cap-sched-month__cell { padding: 4px 5px 3px; }
	.vita-cap-sched-month__num { font-size: 9px; }
	.vita-cap-sched-month__count { display: none; }
	.vita-cap-sched-month__marker { width: 6px; height: 6px; }

	.vita-cap-sched-agenda-row {
		grid-template-columns: 50px minmax(0, 1fr) 24px;
		padding: 8px 10px;
	}
	.vita-cap-sched-agenda-row__dur { display: none; }

	.vita-cap-sched-team-row { padding: 10px 12px; }
	.vita-cap-sched-team-row__stats { gap: 4px; }
	.vita-cap-sched-team-row__chip { padding: 2px 8px; font-size: 9px; }

	.vita-cap-sched-cust-row {
		grid-template-columns: 32px 1fr;
		gap: 8px 10px;
		padding: 10px 12px;
	}
	.vita-cap-sched-cust-row__photo { width: 32px; height: 32px; }
	.vita-cap-sched-cust-row__main { grid-column: 2; }
	.vita-cap-sched-cust-row__badge { grid-column: 1 / -1; justify-self: start; }

	.vita-cap-sched-int-row {
		grid-template-columns: 28px minmax(0, 1fr);
		gap: 10px;
		padding: 10px 12px;
	}
	.vita-cap-sched-int-row__logo { width: 28px; height: 28px; font-size: 12px; }
	.vita-cap-sched-int-row__toggle {
		grid-column: 1 / -1;
		justify-content: flex-end;
		margin-top: 4px;
	}
}
