:root {
	--ink: #162033;
	--muted: #64748b;
	--line: #dfe6ee;
	--surface: #fff;
	--soft: #f5f8fb;
	--brand: #1295ad;
	--brand-dark: #0d7488;
	--shadow: 0 6px 18px rgba(15, 23, 42, .06);
	--radius: 18px;
	--block-gap: 9px;
}

* { box-sizing: border-box; }
html { min-width: 320px; background: #fff; }
body {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 13px;
	color: var(--ink);
	background: #fff;
}
button, input, select { font: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }
svg { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.app { width: min(1680px, 100%); margin: 0 auto; padding: 10px clamp(8px, 1.4vw, 20px) 18px; }
.app-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 0;
	padding: 9px 12px;
	border: 0;
	border-bottom: 1px solid var(--line);
	border-left: 0;
	border-radius: 0;
	background: rgba(255, 255, 255, .94);
	box-shadow: none;
}
.app-header__identity, .app-header__actions, .card__head, .timetable-card__head, .modal__head, .modal__actions { display: flex; align-items: center; }
.app-header__identity { min-width: 0; gap: 10px; }
.app-header__mark {
	display: grid;
	place-items: center;
	flex: 0 0 38px;
	height: 38px;
	border-radius: 50%;
	color: var(--brand);
	background: #eaf9fc;
}
.app-header__mark svg { width: 21px; height: 21px; }
.app-header h1 { overflow: hidden; margin: 1px 0 0; font-size: clamp(16px, 1.65vw, 22px); white-space: nowrap; text-overflow: ellipsis; }
.eyebrow { margin: 0; color: var(--brand-dark); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.app-header__actions { gap: 7px; }

.button, .icon-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 34px;
	border: 0;
	border-radius: 11px;
	font-weight: 700;
	cursor: pointer;
	transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.button { padding: 7px 11px; }
.button:hover, .icon-button:hover { transform: translateY(-1px); }
.button:focus-visible, .icon-button:focus-visible, .subject-chip:focus-visible, .slot:focus-visible { outline: 3px solid rgba(18, 149, 173, .24); outline-offset: 2px; }
.button--primary { color: #fff; background: var(--brand); box-shadow: 0 4px 12px rgba(18, 149, 173, .2); }
.button--primary:hover { background: var(--brand-dark); }
.button--soft { color: #334155; background: #edf2f7; }
.button--danger { color: #b4233a; background: #fff0f2; }
.icon-button { width: 30px; min-height: 30px; padding: 0; border: 1px solid var(--line); background: #fff; font-size: 19px; }
.save-status { display: inline-flex; align-items: center; gap: 5px; padding: 5px 7px; color: var(--muted); font-size: 10px; font-weight: 700; white-space: nowrap; }
.save-status > span { width: 7px; height: 7px; border-radius: 50%; background: #94a3b8; }
.save-status.is-saving > span { background: #e0a300; animation: pulse 1s infinite; }
.save-status.is-saved > span { background: #22a35a; }
.save-status.is-error > span { background: #d83a57; }
@keyframes pulse { 50% { opacity: .35; } }

.workspace { display: grid; width: 100%; min-width: 0; grid-template-columns: 190px minmax(580px, 1fr) 210px; align-items: start; gap: var(--block-gap); }
.card { border: 1px solid rgba(203, 213, 225, .78); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.control-panel { grid-column: 1 / -1; width: 100%; min-width: 0; overflow: hidden; border-left: 4px solid var(--brand); }
.control-panel__tools { display: grid; width: 100%; min-width: 0; }
.subject-card, .totals-card { position: sticky; top: 8px; width: 100%; min-width: 0; max-height: calc(100vh - 16px); padding: 12px; overflow: auto; }
.subject-card { border-top: 1px solid var(--line); }
.totals-card { border-left: 0; }
.official-hours-link { display: inline-flex; align-items: center; min-height: 24px; margin-top: 4px; padding: 3px 8px; border: 1px solid color-mix(in srgb, #7a4fd0 35%, white); border-radius: 8px; color: #6339b5; background: color-mix(in srgb, #7a4fd0 8%, white); font-size: 9px; font-weight: 800; text-decoration: none; white-space: nowrap; }
.official-hours-link:hover { background: color-mix(in srgb, #7a4fd0 14%, white); }
.totals-card { position: static; grid-column: 1 / -1; display: grid; grid-template-columns: auto 120px 150px 1fr; align-items: center; gap: 12px; max-height: none; }
.totals-card .card__head { margin: 0; }
.subject-card { position: relative; grid-column: 1 / -1; max-height: none; }
.subject-card__add { position: absolute; top: 10px; right: 10px; }
.school-type { display: inline-flex; gap: 3px; margin: 0 0 7px; padding: 3px; border: 1px solid var(--line); border-radius: 10px; background: #f1f5f9; }
.school-type button { min-height: 28px; padding: 5px 11px; border: 0; border-radius: 7px; color: var(--muted); background: transparent; font: inherit; font-size: 10px; font-weight: 700; cursor: pointer; }
.school-type button.is-active { color: #fff; background: var(--brand); box-shadow: 0 2px 7px rgba(18, 149, 173, .2); }
.timetable-card { grid-column: 1 / -1; }
.card__head { justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.card h2 { margin: 1px 0 0; font-size: 15px; }
.compact-hint, .grid-help { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.45; }
.compact-hint { margin-bottom: 8px; }

.subjects { display: grid; grid-template-columns: repeat(auto-fill, 1px); grid-auto-flow: row dense; column-gap: 0; row-gap: 5px; padding: 1px 1px 4px; overflow: visible; }
.subject-chip {
	position: relative;
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr) auto;
	align-items: center;
	gap: 6px;
	flex: 0 0 auto;
	width: max-content;
	min-width: 0;
	max-width: 100%;
	min-height: 39px;
	padding: 5px 7px 5px 5px;
	border: 1px solid var(--line);
	border-left: 3px solid var(--subject-color);
	border-radius: 11px;
	background: #fff;
	box-shadow: 0 2px 7px rgba(15, 23, 42, .04);
	text-align: left;
	scroll-snap-align: start;
	cursor: pointer;
	touch-action: none;
	user-select: none;
	transition: background .14s ease, border-color .14s ease, transform .14s ease;
}
.subject-chip:hover { transform: translateX(2px); }
.subject-chip.is-selected { border-color: var(--subject-color); background: color-mix(in srgb, var(--subject-color) 8%, white); box-shadow: 0 0 0 2px color-mix(in srgb, var(--subject-color) 18%, transparent); }
.subject-chip__icon { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; color: var(--subject-color); background: color-mix(in srgb, var(--subject-color) 11%, white); font-weight: 800; }
.subject-chip__icon svg { width: 17px; height: 17px; stroke-width: 1.8; }
.subject-chip__text { min-width: 0; }
.subject-chip__text strong { display: block; overflow: hidden; font-size: 10.5px; line-height: 1.2; white-space: nowrap; text-overflow: ellipsis; }
.subject-chip__text small { color: var(--muted); font-size: 9px; }
.subject-chip__remove { position: absolute; top: -5px; right: -5px; display: none; align-items: center; justify-content: center; width: 17px; height: 17px; padding: 0; border: 0; border-radius: 50%; color: #fff; background: #bd2c45; font-size: 12px; line-height: 1; text-align: center; cursor: pointer; }
.subject-chip:hover .subject-chip__remove { display: flex; }

.timetable-card { min-width: 0; overflow: hidden; }
.timetable-card__head { justify-content: space-between; gap: 8px; min-height: 42px; padding: 7px 10px; border-bottom: 1px solid var(--line); }
.week-summary { color: #334155; font-size: 10px; font-weight: 700; }
.legend { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 9px; }
.legend span { display: inline-flex; align-items: center; gap: 4px; }
.legend i { display: inline-block; width: 9px; height: 9px; border-radius: 3px; }
.legend__dot { background: var(--brand); }
.legend__break { background: repeating-linear-gradient(135deg, #d7dee8, #d7dee8 2px, #eef2f7 2px, #eef2f7 4px); }
.legend__lunch { background: repeating-linear-gradient(135deg, #cbd5e1, #cbd5e1 3px, #e7edf3 3px, #e7edf3 6px); }
.schedule-scroll { max-width: 100%; overflow: auto; overscroll-behavior: contain; }
.schedule-grid { position: relative; display: grid; min-width: 650px; isolation: isolate; background: #fff; }
.grid-corner, .day-header { position: sticky; top: 0; z-index: 7; display: grid; place-items: center; border-right: 1px solid var(--line); border-bottom: 1px solid #cbd5e1; background: #f8fafc; }
.grid-corner { left: 0; z-index: 9; color: var(--muted); font-size: 9px; font-weight: 700; }
.day-header { padding: 4px; font-size: 10px; font-weight: 800; }
.day-header small { display: block; margin-top: 1px; color: var(--muted); font-size: 8px; font-weight: 500; }
.time-label { position: sticky; left: 0; z-index: 5; padding: 3px 5px 0 0; border-right: 1px solid #cbd5e1; border-bottom: 1px solid var(--line); color: var(--muted); background: #f8fafc; font-size: 8px; font-weight: 700; text-align: right; }
.slot { z-index: 1; min-width: 0; padding: 0; border: 0; border-right: 1px solid #e6ebf1; border-bottom: 1px solid #edf1f5; background: #fff; cursor: crosshair; }
.slot:nth-of-type(2n) { border-bottom-color: #dfe6ee; }
.slot:hover { z-index: 2; background: rgba(18, 149, 173, .09); }
.slot.is-drop-target { z-index: 3; background: rgba(18, 149, 173, .2); box-shadow: inset 0 0 0 2px var(--brand); }
.slot.is-unavailable { background: #f4f6f8; cursor: not-allowed; }
.slot.is-recess { background: repeating-linear-gradient(135deg, #dce3eb, #dce3eb 3px, #f3f6f9 3px, #f3f6f9 6px); cursor: not-allowed; }
.slot.is-lunch { background: repeating-linear-gradient(135deg, #cbd5e1, #cbd5e1 4px, #e9eef4 4px, #e9eef4 8px); cursor: not-allowed; }
.event {
	position: relative;
	z-index: 4;
	min-width: 0;
	margin: 1px 2px;
	padding: 3px 5px;
	border: 1px solid color-mix(in srgb, var(--event-color) 70%, #fff);
	border-left: 4px solid var(--event-color);
	border-radius: 7px;
	color: #162033;
	background: color-mix(in srgb, var(--event-color) 16%, white);
	box-shadow: 0 2px 7px rgba(15, 23, 42, .09);
	overflow: hidden;
	cursor: grab;
	touch-action: none;
	user-select: none;
}
.event:active { cursor: grabbing; }
.event.is-split { width: calc(50% - 3px); }
.event.is-split-left { justify-self: start; margin-right: 0; }
.event.is-split-right { justify-self: end; margin-left: 0; }
.event.is-dragging { opacity: .78; transform: none; box-shadow: 0 12px 28px rgba(15, 23, 42, .28); }
.event.is-resizing { opacity: .76; box-shadow: 0 8px 20px rgba(15, 23, 42, .2); }
.event.is-invalid-target { overflow: visible; cursor: not-allowed; }
.event.is-invalid-target::before { content: "⛔"; position: absolute; inset: 50% auto auto 50%; z-index: 10; transform: translate(-50%, -50%); font-size: 24px; line-height: 1; filter: drop-shadow(0 1px 2px rgba(255, 255, 255, .9)); pointer-events: none; }
.drag-preview { z-index: 8; display: grid; place-items: center; min-width: 0; margin: 1px 2px; border: 2px solid var(--brand); border-radius: 7px; background: rgba(18, 149, 173, .2); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .7); pointer-events: none; }
.drag-preview.is-invalid { border-color: #dc3545; background: rgba(220, 53, 69, .18); color: #b4233a; font-size: 22px; }
.event__resize { position: absolute; left: 50%; z-index: 6; width: 32px; height: 8px; transform: translateX(-50%); cursor: ns-resize; touch-action: none; }
.event__resize::after { content: ""; position: absolute; left: 50%; top: 50%; width: 19px; height: 2px; transform: translate(-50%, -50%); border-radius: 99px; background: #fff; box-shadow: 0 0 0 1px rgba(15, 23, 42, .2), 0 1px 2px rgba(15, 23, 42, .18); }
.event__resize--top { top: -3px; }
.event__resize--bottom { bottom: -3px; }
.event strong, .event small { display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.event strong { font-size: 9px; line-height: 1.15; }
.event small { margin-top: 2px; color: #475569; font-size: 7.5px; }
.subject-chip.is-dragging { opacity: .65; transform: scale(.98); cursor: grabbing; }
.palette-drag-preview { position: fixed; z-index: 200; max-width: min(280px, calc(100vw - 16px)); margin: 0; opacity: .94; transform: scale(1.03); box-shadow: 0 14px 32px rgba(15, 23, 42, .28); pointer-events: none; }
.break-label, .lunch-label { z-index: 3; align-self: center; justify-self: center; pointer-events: none; color: #64748b; font-size: 8px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.lunch-label { color: #475569; font-size: 10px; letter-spacing: .12em; }
.grid-help { padding: 6px 10px 7px; border-top: 1px solid var(--line); text-align: center; }

.total-ring { --progress: 0%; position: relative; display: grid; place-items: center; width: 94px; height: 94px; margin: 8px auto 10px; border-radius: 50%; background: conic-gradient(var(--brand) var(--progress), #e9f6f8 0); text-align: center; }
.total-ring::before { content: ""; position: absolute; inset: 8px; border-radius: 50%; background: #fff; }
.total-ring__content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; width: 70px; min-width: 0; text-align: center; }
.total-ring__content strong { display: block; color: var(--ink); font-size: 17px; line-height: 1; white-space: nowrap; }
.total-ring__content small { display: block; color: var(--muted); font-size: 8px; line-height: 1; white-space: nowrap; }
.totals-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-bottom: 8px; }
.totals-summary > div { padding: 6px; border-radius: 9px; background: var(--soft); text-align: center; }
.totals-summary strong { display: block; font-size: 11px; }
.totals-summary span { color: var(--muted); font-size: 8px; }
.subject-totals { display: grid; gap: 6px; }
.volume-row { --subject-color: #64748b; }
.volume-row__top { display: flex; justify-content: space-between; gap: 6px; margin-bottom: 3px; font-size: 9px; }
.volume-row__top span { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.volume-row__top strong { flex: none; }
.volume-row__bar { height: 4px; overflow: hidden; border-radius: 99px; background: #edf1f5; }
.volume-row__bar i { display: block; width: var(--volume); height: 100%; border-radius: inherit; background: var(--subject-color); }

label { display: grid; gap: 4px; color: #334155; font-size: 10px; font-weight: 700; }
input, select { width: 100%; min-height: 34px; padding: 6px 8px; border: 1px solid #cbd5e1; border-radius: 9px; color: var(--ink); background: #fff; }
input:focus, select:focus { outline: 3px solid rgba(18, 149, 173, .14); border-color: var(--brand); }
input[type="color"] { padding: 3px; }
.modal { position: absolute; inset: 0; z-index: 100; display: grid; place-items: center; padding: 12px; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, .5); backdrop-filter: blur(3px); }
.modal__panel { position: relative; width: min(540px, 100%); max-height: calc(100vh - 24px); overflow: auto; border: 1px solid rgba(255,255,255,.75); border-radius: 18px; background: #fff; box-shadow: 0 24px 70px rgba(15,23,42,.28); }
.modal__panel--wide { width: min(1040px, 100%); }
.modal__panel--small { width: min(390px, 100%); }
.modal__head { position: sticky; top: 0; z-index: 2; justify-content: space-between; gap: 12px; padding: 12px 14px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); }
.modal__head h2 { margin: 2px 0 0; font-size: 17px; }
.modal form { display: grid; gap: 12px; padding: 14px; }
.meta-fields { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.shared-schedule { display: grid; gap: 10px; padding: 11px; border: 1px solid var(--line); border-radius: 14px; background: #f8fafc; }
.shared-schedule__intro { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.shared-schedule__intro > div { display: grid; gap: 2px; }
.shared-schedule__intro > div strong { font-size: 12px; }
.shared-schedule__intro > div span { color: var(--muted); font-size: 9px; }
.schedule-toggle { display: flex; grid-template-columns: none; align-items: center; gap: 8px; min-width: 210px; padding: 7px 9px; border: 1px solid #bde3e9; border-radius: 11px; background: #eefbfc; cursor: pointer; }
.schedule-toggle input { flex: 0 0 17px; width: 17px; min-height: 17px; accent-color: var(--brand); }
.schedule-toggle span { display: grid; gap: 1px; }
.schedule-toggle strong { color: var(--ink); font-size: 10px; }
.schedule-toggle small { color: var(--muted); font-size: 8px; font-weight: 500; }
.schedule-groups { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.schedule-group { padding: 8px; border: 1px solid var(--line); border-left: 3px solid var(--brand); border-radius: 10px; background: #fff; }
.schedule-group:nth-child(2), .schedule-group:nth-child(4) { border-left-color: #7a4fd0; }
.schedule-group h3 { margin: 0 0 6px; font-size: 9px; }
.schedule-group > div { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.schedule-group label { font-size: 8px; }
.schedule-group input { min-height: 31px; padding: 4px; font-size: 10px; }
.schedule-step-note { margin: 0; color: var(--muted); font-size: 8px; text-align: right; }
.day-config { padding: 8px; border: 1px solid var(--line); border-radius: 12px; background: #f8fafc; }
.day-config:not(.is-enabled) .day-config__times { opacity: .45; pointer-events: none; }
.day-config__toggle { display: flex; grid-column: 1 / -1; align-items: center; gap: 6px; margin-bottom: 8px; font-size: 11px; }
.day-config__toggle input { width: 16px; min-height: 16px; }
.day-config__times { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.day-config__times h3 { grid-column: 1 / -1; margin: 5px 0 0; color: var(--muted); font-size: 8px; letter-spacing: .06em; text-transform: uppercase; }
.day-config__morning-only { grid-column: 1 / -1; margin: 8px 0 0; padding: 7px; border-radius: 8px; color: #64748b; background: #edf2f7; font-size: 8px; font-weight: 700; text-align: center; }
.day-config__times label { font-size: 8px; }
.day-config__times input { min-height: 29px; padding: 4px; font-size: 10px; }
.form-row { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 7px; }
.modal__actions { justify-content: flex-end; gap: 7px; padding-top: 3px; }
.modal__actions--split { display: grid; grid-template-columns: auto 1fr auto auto; }
body.has-modal { overflow: hidden; }
.toast { position: absolute; right: 14px; bottom: 14px; z-index: 150; max-width: min(390px, calc(100% - 28px)); padding: 10px 13px; border-radius: 11px; color: #fff; background: #162033; box-shadow: 0 12px 30px rgba(15,23,42,.24); font-size: 11px; font-weight: 700; }
.toast.is-error { background: #b4233a; }

.auth-shell { min-height: min(720px, 100vh); display: grid; place-items: center; padding: 20px; }
.auth-card { width: min(560px, 100%); padding: clamp(24px, 5vw, 48px); border: 1px solid var(--line); border-left: 4px solid var(--brand); border-radius: 22px; background: #fff; box-shadow: var(--shadow); text-align: center; }
.auth-card__icon { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 13px; border-radius: 50%; background: #eaf9fc; font-size: 34px; }
.auth-card h1 { margin: 6px 0 9px; font-size: clamp(22px, 4vw, 34px); }
.auth-card p:not(.eyebrow) { margin: 0 auto 20px; color: var(--muted); line-height: 1.65; }

@media (max-width: 1150px) {
	.workspace { grid-template-columns: 175px minmax(530px, 1fr); }
	.totals-card { position: static; grid-column: 1 / -1; display: grid; grid-template-columns: auto 120px 150px 1fr; align-items: center; gap: 12px; max-height: none; }
	.totals-card .card__head { margin: 0; }
	.total-ring { width: 76px; height: 76px; margin: 0; border-width: 6px; }
	.subject-totals { grid-template-columns: repeat(4, minmax(100px, 1fr)); }
}

@media (max-width: 760px) {
	.app { padding: 6px 6px 12px; }
	.app-header { position: sticky; top: 0; z-index: 30; padding: 7px 8px; border-radius: 0; }
	.app-header__mark { flex-basis: 32px; height: 32px; }
	.app-header__actions { gap: 3px; }
	.app-header__actions .button { min-width: 34px; padding: 7px; }
	.app-header__actions .button span { display: none; }
	.save-status { max-width: 88px; overflow: hidden; text-overflow: ellipsis; }
	.workspace { display: flex; flex-direction: column; gap: var(--block-gap); }
	.subject-card, .totals-card { position: static; width: 100%; max-height: none; padding: 9px; }
	.subject-card__add { position: static; width: 100%; margin-bottom: 7px; }
	.subjects { padding: 1px 0 4px; }
	.subject-chip { flex: 0 0 auto; width: max-content; max-width: 100%; }
	.subject-chip__remove { display: flex; }
	.timetable-card { width: 100%; }
	.schedule-grid { min-width: 610px; }
	.totals-card { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
	.totals-card .card__head { margin: 0; }
	.total-ring { width: 68px; height: 68px; grid-column: 2; grid-row: 1 / span 2; }
	.totals-summary { grid-column: 1; margin: 0; }
	.subject-totals { grid-column: 1 / -1; grid-template-columns: repeat(2, minmax(0,1fr)); }
	.meta-fields { grid-template-columns: 1fr 1fr; }
	.shared-schedule__intro { align-items: stretch; flex-direction: column; }
	.schedule-toggle { min-width: 0; }
	.schedule-groups { grid-template-columns: 1fr 1fr; }
	.modal { align-items: end; padding: 0; }
	.modal__panel, .modal__panel--wide, .modal__panel--small { width: 100%; max-height: 92vh; border-radius: 18px 18px 0 0; }
}

@media (max-width: 460px) {
	.app-header__identity .eyebrow { display: none; }
	.app-header h1 { max-width: 125px; font-size: 14px; }
	.save-status { padding: 4px 2px; font-size: 8px; }
	.meta-fields { grid-template-columns: 1fr; }
	.schedule-groups { grid-template-columns: 1fr; }
	.form-row { grid-template-columns: 1fr 1fr; }
	.form-row label:first-child { grid-column: 1 / -1; }
	.modal__actions--split { grid-template-columns: auto 1fr auto; }
	.modal__actions--split .button--soft { display: none; }
}

@media print {
	.app-header__actions, .subject-card, .totals-card, .grid-help { display: none !important; }
	.workspace { display: block; }
	.card { box-shadow: none; }
}
