:root {
  --bg: #ece6f8;
  --bg-accent: #d9cff4;
  --surface: rgba(255, 252, 246, 0.9);
  --surface-strong: #fffdf8;
  --line: rgba(70, 61, 50, 0.14);
  --text: #2a241e;
  --muted: #6d655e;
  --primary: #18664b;
  --primary-strong: #0f4f39;
  --shadow: 0 18px 40px rgba(42, 36, 30, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 28%),
    linear-gradient(135deg, var(--bg), var(--bg-accent));
}

a {
  color: inherit;
}

button {
  font: inherit;
  cursor: pointer;
}

.password-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(42, 36, 30, 0.42);
  backdrop-filter: blur(10px);
}

.password-card {
  width: min(100%, 420px);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 28px;
  background: rgba(255, 250, 243, 0.96);
  box-shadow: var(--shadow);
}

.password-card h2 {
  margin: 0;
  font-size: 2rem;
}

.password-copy {
  margin: 12px 0 18px;
  color: var(--muted);
}

.password-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.password-error {
  margin: 12px 0 0;
  color: #9f1239;
  font-size: 0.9rem;
  font-weight: 700;
}

.page-shell {
  max-width: 1480px;
  margin: 0 auto;
  padding: 32px 24px 40px;
}

.hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(111, 88, 156, 0.92), rgba(85, 65, 130, 0.94));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.eyebrow,
.panel-label,
.card-label {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--muted);
}

h1,
h2,
h3,
.day-number {
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.95;
  max-width: none;
  color: #fffafc;
}

.hero-copy {
  max-width: 48rem;
  margin: 14px 0 0;
  font-size: 1rem;
  color: rgba(248, 241, 255, 0.88);
}

.hero .eyebrow {
  color: rgba(240, 231, 255, 0.76);
}

.hero-card,
.panel,
.calendar-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card,
.panel {
  background: var(--surface);
}

.calendar-panel {
  background: #efede8;
}

.calendar-panel.is-filtered {
  background: #f3d7d7;
}

.hero-card {
  min-width: 260px;
  padding: 20px;
}

.sheet-link {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--primary-strong);
  font-weight: 700;
  text-decoration: none;
}

.sheet-link:hover {
  text-decoration: underline;
}

.meta-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.layout.full-month-layout {
  grid-template-columns: 1fr;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.layout.full-month-layout .sidebar {
  order: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.layout.full-month-layout .calendar-panel {
  order: 1;
}

.layout.full-month-layout .calendar-panel {
  padding-left: 8px;
  padding-right: 8px;
}

.panel {
  padding: 20px;
}

.panel.has-note {
  background: rgba(24, 102, 75, 0.1);
  border-color: rgba(24, 102, 75, 0.35);
}

.panel-row,
.calendar-toolbar,
.month-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.summary-list,
.filter-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.attribute-group + .attribute-group {
  margin-top: 16px;
}

.attribute-label {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.attribute-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.attribute-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--surface-strong);
  color: var(--text);
}

.attribute-chip.active {
  border-color: rgba(24, 102, 75, 0.45);
  background: rgba(24, 102, 75, 0.08);
}

.summary-item,
.filter-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
}

.filter-chip {
  justify-content: flex-start;
  width: 100%;
}

.filter-chip.active {
  border-color: rgba(24, 102, 75, 0.45);
  background: rgba(24, 102, 75, 0.08);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.summary-count {
  color: var(--muted);
  font-size: 0.9rem;
}

.search-input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background: var(--surface-strong);
  color: var(--text);
}

.search-results {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.search-result-card {
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
}

.search-result-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: var(--text);
}

.date-sheet-button {
  margin-bottom: 10px;
  width: 100%;
}

.search-result-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-history {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.search-history-title {
  margin: 0 0 8px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.search-history-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-history-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(145, 102, 194, 0.08);
}

.search-history-dates {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text);
}

.search-history-meta {
  font-size: 0.76rem;
  color: var(--muted);
}

.search-result-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.88rem;
}

button.search-result-item {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 8px 10px;
  background: rgba(24, 102, 75, 0.06);
  color: inherit;
  text-align: left;
}

button.search-result-item:hover,
button.search-result-item:focus-visible {
  background: rgba(24, 102, 75, 0.12);
  outline: none;
}

.search-result-date {
  font-weight: 700;
  color: var(--text);
}

.search-result-meta {
  text-align: right;
}

.note-date-label {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.current-note-meta {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.8rem;
}

.holiday-note {
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(24, 102, 75, 0.12);
  border: 1px solid rgba(24, 102, 75, 0.35);
  color: var(--text);
  font-size: 0.88rem;
}

.is-hidden {
  display: none !important;
}

.note-input {
  width: 100%;
  min-height: 110px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background: var(--surface-strong);
  color: var(--text);
  font: inherit;
}

.note-save {
  margin-top: 12px;
  width: 100%;
}

.note-history {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.note-history-title {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.note-history-empty {
  color: var(--muted);
  font-size: 0.88rem;
}

.note-history-item {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
}

.note-history-meta {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.75rem;
}

.note-history-text {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.4;
  white-space: pre-wrap;
}

.calendar-panel {
  padding: 20px;
}

.view-switch {
  display: inline-flex;
  gap: 8px;
  margin-top: 18px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.view-button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  background: transparent;
  color: var(--muted);
}

.view-button.active {
  background: var(--primary);
  color: #fff;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(85, 65, 130, 0.22);
  background: rgba(111, 88, 156, 0.08);
}

.active-filters-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.active-filter-chip {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(85, 65, 130, 0.16);
  color: var(--text);
  font-size: 0.84rem;
}

#month-label {
  margin: 0;
  min-width: 240px;
  text-align: center;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
}

.weekday-row,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.weekday-row {
  margin: 18px 0 10px;
  padding: 0 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.calendar-grid {
  min-height: 760px;
}

.calendar-grid.full-month-layout {
  grid-template-columns: repeat(var(--month-day-count, 31), minmax(92px, 1fr));
  min-height: auto;
  overflow-x: auto;
  padding-bottom: 8px;
  gap: 6px;
}

.calendar-grid.full-month-layout .day-cell {
  padding: 10px 8px;
}

.calendar-grid.picture-days-list {
  display: flex;
  flex-direction: column;
  min-height: auto;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
}

.picture-days-header,
.picture-days-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.5fr) 80px 120px 90px 70px 110px minmax(160px, 1.2fr) 110px;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
}

.picture-days-header {
  background: rgba(85, 65, 130, 0.1);
  border-bottom: 1px solid var(--line);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.picture-days-row {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(70, 61, 50, 0.08);
  background: transparent;
  text-align: left;
  color: var(--text);
}

.picture-days-row:last-child {
  border-bottom: 0;
}

.picture-days-row:hover,
.picture-days-row:focus-visible {
  background: rgba(24, 102, 75, 0.06);
  outline: none;
}

.picture-days-row.is-selected {
  background: rgba(24, 102, 75, 0.12);
}

.picture-days-empty {
  padding: 18px;
  color: var(--muted);
}

.day-cell {
  min-height: 152px;
  padding: 12px;
  border-radius: 20px;
  border: 1px solid var(--line);
  border-top-color: rgba(85, 65, 130, 0.22);
  border-bottom-color: rgba(85, 65, 130, 0.22);
  background: rgba(255, 255, 255, 0.68);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.day-cell:nth-child(n + 8) {
  border-top-color: rgba(85, 65, 130, 0.3);
}

.day-cell.is-selected {
  box-shadow: inset 0 0 0 2px rgba(24, 102, 75, 0.75);
}

.day-cell.is-weekend {
  background: rgba(186, 167, 255, 0.2);
}

.day-cell.is-weekend-booked {
  background: rgba(220, 38, 38, 0.18);
  border-color: rgba(185, 28, 28, 0.4);
}

.day-cell.capacity-warning {
  background: rgba(245, 208, 66, 0.28);
  border-color: rgba(181, 134, 0, 0.45);
}

.day-cell.capacity-danger {
  background: rgba(220, 38, 38, 0.18);
  border-color: rgba(185, 28, 28, 0.4);
}

.day-cell.capacity-critical {
  background: rgba(70, 8, 8, 0.45);
  border-color: rgba(70, 8, 8, 0.82);
  color: #fff8f8;
}

.capacity-critical .group-label,
.capacity-critical .event-meta,
.capacity-critical .summary-count,
.capacity-critical .meta-text {
  color: rgba(255, 248, 248, 0.84);
}

.day-cell.is-other-month {
  opacity: 0.45;
}

.day-cell.is-today {
  border-color: rgba(118, 79, 176, 0.55);
  box-shadow: inset 0 0 0 1px rgba(118, 79, 176, 0.22);
}

.day-cell.is-focused {
  box-shadow: inset 0 0 0 2px rgba(24, 102, 75, 0.55);
}

.day-cell.has-note {
  border-color: rgba(24, 102, 75, 0.48);
  box-shadow: inset 0 0 0 1px rgba(24, 102, 75, 0.18);
}

.day-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 36px;
  padding: 4px 8px;
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 1.2rem;
}

.day-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.group-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.day-note-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.day-note-button:hover,
.day-note-button:focus-visible {
  outline: none;
}

.day-name {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.zone-note-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 0.72rem;
}

.zone-note-chip.has-note {
  border-color: rgba(24, 102, 75, 0.45);
  background: rgba(24, 102, 75, 0.12);
  color: var(--text);
}

.holiday-chip {
  align-self: flex-start;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(24, 102, 75, 0.12);
  border: 1px solid rgba(24, 102, 75, 0.4);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
}

.detail-school-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.detail-school-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
}

button.detail-school-item.detail-school-link {
  width: 100%;
  text-align: left;
  cursor: pointer;
}

button.detail-school-item.detail-school-link:hover,
button.detail-school-item.detail-school-link:focus-visible {
  background: rgba(24, 102, 75, 0.08);
  border-color: rgba(24, 102, 75, 0.28);
  outline: none;
}

.detail-school-item span,
.details-empty-copy {
  color: var(--muted);
  font-size: 0.9rem;
}

.day-number.has-note {
  border: 2px solid rgba(24, 102, 75, 0.7);
  background: rgba(24, 102, 75, 0.14);
}

.day-groups {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.group-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.group-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event-pill {
  width: 100%;
  text-align: left;
  border: 0;
  border-left: 4px solid transparent;
  border-radius: 12px;
  padding: 5px 7px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

.event-pill:hover,
.event-pill:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(42, 36, 30, 0.08);
  outline: none;
}

.picture-day-pill {
  border-left-width: 0;
  padding: 7px 8px;
}

.picture-day-pill .event-title {
  font-size: 0.76rem;
}

.picture-day-pill .event-meta {
  margin-top: 2px;
  font-size: 0.64rem;
  line-height: 1.35;
}

.zone-summary-card {
  cursor: pointer;
}

.zone-summary-card.is-selected {
  box-shadow: inset 0 0 0 2px rgba(24, 102, 75, 0.65);
}

.event-pill.is-selected {
  box-shadow: inset 0 0 0 1px rgba(24, 102, 75, 0.4);
}

.summary-pill {
  border-left-color: transparent;
  cursor: default;
}

.summary-pill:hover,
.summary-pill:focus-visible {
  transform: none;
  box-shadow: none;
}

.summary-pill.capacity-warning,
.planner-card.capacity-warning {
  background: rgba(245, 208, 66, 0.32);
}

.summary-pill.capacity-danger,
.planner-card.capacity-danger {
  background: rgba(220, 38, 38, 0.2);
}

.summary-pill.capacity-critical,
.planner-card.capacity-critical {
  background: rgba(70, 8, 8, 0.92);
  color: #fff8f8;
}

.planner-card {
  padding: 7px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
}

.planner-total-card {
  background: #111111;
  color: #ffffff;
  border-color: rgba(17, 17, 17, 0.9);
}

.planner-total-card.capacity-warning,
.planner-total-card.capacity-danger {
  border-color: var(--line);
  color: var(--text);
}

.planner-total-card.capacity-critical {
  border-color: rgba(70, 8, 8, 0.92);
  color: #fff8f8;
}

.planner-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.planner-title,
.planner-total {
  font-size: 0.72rem;
}

.planner-total-number {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.planner-total-card .limit-label,
.planner-total-card .planner-title,
.planner-total-card .planner-total,
.planner-total-card .planner-total-number {
  color: #ffffff;
}

.planner-total-card.capacity-warning .planner-total-number,
.planner-total-card.capacity-danger .planner-total-number {
  color: var(--text);
}

.planner-total-card .limit-input {
  background: rgba(255, 255, 255, 0.98);
  color: #111111;
}

.planner-title {
  font-weight: 700;
}

.limit-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
}

.zone-limit-field {
  margin-top: 5px;
}

.limit-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: inherit;
  opacity: 0.82;
}

.limit-input {
  width: 54px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 3px 5px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 0.74rem;
}

.capacity-critical .limit-input {
  background: rgba(255, 248, 248, 0.92);
}

.event-title {
  display: block;
  font-weight: 700;
  font-size: 0.78rem;
}

.event-meta {
  display: block;
  margin-top: 1px;
  color: var(--muted);
  font-size: 0.68rem;
}

.summary-number {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.status-banner {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 0.9rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
}

.status-banner.is-hidden {
  display: none;
}

.details-empty,
.details-card {
  color: var(--muted);
  line-height: 1.5;
}

.details-legend {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legend-swatch {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid var(--line);
  flex: 0 0 auto;
}

.legend-swatch.warning {
  background: rgba(245, 208, 66, 0.45);
}

.legend-swatch.danger {
  background: rgba(220, 38, 38, 0.3);
}

.legend-swatch.critical {
  background: rgba(70, 8, 8, 0.92);
  border-color: rgba(70, 8, 8, 0.92);
}

.details-card h3 {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 1.35rem;
}

.details-card p {
  margin: 0 0 10px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.detail-item {
  padding: 10px;
  border-radius: 14px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.detail-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.detail-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.nav-button,
.ghost-button,
.primary-button {
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
}

.primary-button {
  border-color: transparent;
  background: var(--primary);
  color: #fff;
}

.primary-button:hover {
  background: var(--primary-strong);
}

.primary-button:disabled {
  background: #a7afa8;
  color: #eef2ee;
  cursor: default;
}

@media (max-width: 1100px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .calendar-grid {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 18px 14px 28px;
  }

  .hero,
  .calendar-toolbar,
  .month-controls {
    flex-direction: column;
    align-items: stretch;
  }

  #month-label {
    min-width: 0;
  }

  .weekday-row {
    display: none;
  }

  .calendar-grid {
    grid-template-columns: 1fr;
  }

  .day-cell {
    min-height: 0;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }
}
