:root {
  color-scheme: light;
  --bg: #f1f5f4;
  --surface: #ffffff;
  --surface-soft: #f7faf9;
  --ink: #172522;
  --muted: #61716d;
  --line: #dce6e3;
  --primary: #0f766e;
  --primary-dark: #0b5f59;
  --primary-soft: #dff3ef;
  --danger: #b42318;
  --danger-soft: #fff0ee;
  --warning: #9a6700;
  --shadow: 0 18px 48px rgba(24, 55, 48, 0.12);
  font-family:
    -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", Meiryo,
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(15, 118, 110, 0.12), transparent 35%),
    var(--bg);
  color: var(--ink);
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  width: min(100%, 540px);
  min-height: 100vh;
  margin: 0 auto;
  padding: max(18px, env(safe-area-inset-top)) 18px max(32px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.app-header h1,
.step-heading h2,
.screen > h2 {
  margin: 2px 0 0;
}

.app-header h1 {
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}

.eyebrow {
  margin: 0;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mode-badge {
  padding: 7px 10px;
  border: 1px solid #acd6cf;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.screen {
  animation: appear 180ms ease-out;
}

.screen[hidden] {
  display: none;
}

@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.app-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-bottom: 24px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #e7eeec;
}

.app-tab {
  min-height: 44px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 900;
}

.app-tab span {
  margin-right: 4px;
}

.app-tab.is-active {
  background: var(--surface);
  box-shadow: 0 3px 12px rgba(23, 37, 34, 0.1);
  color: var(--primary-dark);
}

.overview-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
}

.overview-heading h2 {
  margin: 3px 0 0;
  font-size: 1.28rem;
}

.compact-add-button {
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
}

.date-navigator {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 8px;
  align-items: stretch;
  margin-bottom: 13px;
}

.date-navigator > button {
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 900;
}

.date-display strong,
.date-display small {
  display: block;
}

.date-display strong {
  font-size: 1rem;
}

.date-display small {
  margin-top: 2px;
  color: var(--primary);
  font-size: 0.68rem;
}

.summary-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(23, 37, 34, 0.05);
}

.summary-strip > div {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: baseline;
  padding: 12px 4px;
  border-right: 1px solid #edf2f1;
  text-align: center;
}

.summary-strip > div:last-child {
  border-right: 0;
}

.summary-strip small {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
}

.summary-strip strong {
  margin-top: 3px;
  font-size: 1.25rem;
}

.summary-strip span:last-child {
  margin-left: 2px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
}

.summary-dot {
  align-self: center;
  width: 7px;
  height: 7px;
  margin-right: 3px;
  border-radius: 50%;
}

.summary-dot.is-attending { background: var(--primary); }
.summary-dot.is-absent { background: var(--danger); }
.summary-dot.is-shuttle { background: #315ea8; }
.summary-dot.is-self { background: #9a6700; }

.list-tools {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
}

.filter-scroll {
  display: flex;
  gap: 7px;
  min-width: 0;
  overflow-x: auto;
  padding: 2px;
  scrollbar-width: none;
}

.filter-scroll::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
}

.filter-chip.is-active {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.result-count {
  flex: 0 0 auto;
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.attendance-list {
  display: grid;
  gap: 9px;
}

.attendance-row {
  display: grid;
  grid-template-columns: 42px minmax(88px, 1fr) auto 12px;
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 70px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--primary);
  border-radius: 15px;
  background: var(--surface);
  color: var(--ink);
  text-align: left;
}

.attendance-row.is-absent {
  border-left-color: var(--danger);
  background: #fffafa;
}

.attendance-row:hover,
.attendance-row:focus-visible {
  outline: none;
  border-color: #80bdb5;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.09);
}

.roster-avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: #e6eefc;
  color: #315ea8;
  font-weight: 900;
}

.roster-identity,
.roster-identity strong,
.roster-identity small {
  display: block;
  min-width: 0;
}

.roster-identity strong {
  overflow: hidden;
  font-size: 0.9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.roster-identity small {
  margin-top: 4px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.65rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.roster-details {
  display: grid;
  grid-template-columns: minmax(68px, auto) 48px;
  gap: 6px;
  justify-content: end;
}

.roster-badge,
.transport-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 29px;
  padding: 4px 8px;
  border-radius: 9px;
  font-size: 0.68rem;
  font-weight: 900;
  white-space: nowrap;
}

.roster-badge.is-attending {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.roster-badge.is-absent {
  background: var(--danger-soft);
  color: var(--danger);
}

.transport-badge.is-shuttle {
  background: #e6eefc;
  color: #315ea8;
}

.transport-badge.is-self {
  background: #fff0d2;
  color: #7a5200;
}

.transport-badge.is-undecided {
  background: #eef2f1;
  color: var(--muted);
}

.transport-badge.is-none {
  color: var(--muted);
}

.row-arrow {
  color: #8da09b;
  font-size: 1.25rem;
}

.overview-footnote {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}

.intro-card {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
  padding: 17px;
  border: 1px solid #cce4df;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #e8f7f4 100%);
}

@media (max-width: 420px) {
  .app-shell {
    padding-right: 13px;
    padding-left: 13px;
  }

  .attendance-row {
    grid-template-columns: 38px minmax(76px, 1fr) auto 9px;
    gap: 8px;
    padding-right: 9px;
    padding-left: 9px;
  }

  .roster-avatar {
    width: 36px;
    height: 36px;
  }

  .roster-details {
    grid-template-columns: minmax(60px, auto) 44px;
    gap: 4px;
  }

  .roster-badge,
  .transport-badge {
    padding: 4px 6px;
    font-size: 0.62rem;
  }
}

.intro-card h2 {
  margin: 0 0 4px;
  font-size: 1.15rem;
}

.intro-card p,
.complete-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.intro-icon,
.bot-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
}

.field-group {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

.field-group > label,
.field-group > legend,
.label-row label {
  display: block;
  margin-bottom: 9px;
  color: #2a3c38;
  font-size: 0.88rem;
  font-weight: 800;
}

.required {
  margin-left: 5px;
  color: var(--danger);
  font-size: 0.68rem;
}

.optional {
  color: var(--muted);
  font-size: 0.75rem;
}

.label-row,
.field-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.label-row label {
  margin-bottom: 0;
}

.label-row {
  margin-bottom: 9px;
}

.segmented-control {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #eaf0ee;
}

.segmented-control label {
  position: relative;
}

.segmented-control input,
.status-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.segmented-control span {
  display: block;
  padding: 10px 8px;
  border-radius: 10px;
  color: var(--muted);
  text-align: center;
  font-size: 0.86rem;
  font-weight: 800;
}

.segmented-control input:checked + span {
  background: var(--surface);
  box-shadow: 0 3px 10px rgba(23, 37, 34, 0.1);
  color: var(--primary-dark);
}

.segmented-control label:has(input:focus-visible) span,
.status-card:has(input:focus-visible) {
  outline: 3px solid rgba(15, 118, 110, 0.28);
  outline-offset: 2px;
}

.combobox-wrap,
.input-with-icon {
  position: relative;
}

.field-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  transform: translateY(-50%);
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 900;
  pointer-events: none;
}

input[type="search"],
input[type="date"],
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  background: var(--surface);
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input[type="search"],
input[type="date"] {
  min-height: 52px;
  padding: 12px 44px 12px 50px;
}

input[type="date"] {
  display: block;
  min-width: 0;
  max-width: 100%;
  padding: 0;
  text-align: center;
}

input[type="date"]::-webkit-date-and-time-value {
  text-align: center;
}

textarea {
  resize: vertical;
  min-height: 96px;
  padding: 13px 14px;
  line-height: 1.55;
}

input:focus,
textarea:focus {
  border-color: #5db3a9;
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.11);
}

.clear-button {
  position: absolute;
  top: 50%;
  right: 11px;
  display: none;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  background: #eef3f2;
  color: var(--muted);
}

.clear-button.is-visible {
  display: block;
}

.combobox-group {
  position: relative;
}

.option-list {
  position: absolute;
  z-index: 10;
  right: 0;
  left: 0;
  max-height: 250px;
  margin: 6px 0 0;
  padding: 6px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
  list-style: none;
}

.option-list li {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
}

.option-list li:hover,
.option-list li:focus,
.option-list li[aria-selected="true"] {
  outline: none;
  background: var(--primary-soft);
}

.person-avatar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #e6eefc;
  color: #315ea8;
  font-weight: 900;
}

.person-name {
  font-weight: 800;
}

.person-meta {
  color: var(--muted);
  font-size: 0.72rem;
}

.field-error {
  margin: 7px 0 0;
  color: var(--danger);
  font-size: 0.78rem;
  font-weight: 700;
}

.confirm-error {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--danger-soft);
}

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

.status-card {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 78px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
}

.status-card:has(input:checked) {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
  background: #f4fbf9;
}

.status-absent:has(input:checked) {
  border-color: #cf594f;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.09);
  background: var(--danger-soft);
}

.status-symbol {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.7rem;
  font-weight: 900;
}

.status-absent .status-symbol {
  background: #ffe1dd;
  color: var(--danger);
}

.status-return .status-symbol {
  background: #e3f4e7;
  color: #23743a;
}

.status-return {
  grid-column: 1 / -1;
}

.status-timed .status-symbol {
  background: #fff0d2;
  color: #8d5f00;
}

.conditional-field {
  padding: 14px;
  border: 1px solid #cce4df;
  border-radius: 15px;
  background: #f3faf8;
}

.time-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.time-input-row > span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

input[type="time"] {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px 12px 50px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  background: var(--surface);
  color: var(--ink);
}

input[type="time"]:focus {
  border-color: #5db3a9;
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.11);
}

.transport-control.is-disabled {
  opacity: 0.5;
}

.transport-control.is-disabled label {
  cursor: not-allowed;
}

.field-help {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.5;
}

.status-card strong,
.status-card small {
  display: block;
}

.status-card strong {
  margin-bottom: 3px;
  font-size: 0.84rem;
}

.status-card small {
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.35;
}

.field-footer {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.72rem;
}

.switch-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.switch-label input {
  position: absolute;
  opacity: 0;
}

.switch {
  position: relative;
  width: 34px;
  height: 20px;
  border-radius: 999px;
  background: #c7d2cf;
  transition: background 160ms ease;
}

.switch::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  content: "";
  transition: transform 160ms ease;
}

.switch-label input:checked + .switch {
  background: var(--primary);
}

.switch-label input:checked + .switch::after {
  transform: translateX(14px);
}

.privacy-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: -2px 0 22px;
  padding: 13px;
  border-radius: 13px;
  background: #fff9e8;
  color: #68511a;
  font-size: 0.76rem;
  line-height: 1.55;
}

.privacy-note span {
  font-size: 0.65rem;
  font-weight: 900;
}

.privacy-note p {
  margin: 0;
}

.primary-button,
.secondary-button {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  font-weight: 900;
}

.primary-button {
  border: 0;
  background: linear-gradient(135deg, var(--primary), #119889);
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.23);
  color: #fff;
}

.primary-button:hover {
  background: linear-gradient(135deg, var(--primary-dark), #0f8579);
}

.primary-button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.secondary-button {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.button-stack {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.step-heading {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 12px 0 24px;
}

.step-heading h2 {
  font-size: 1.25rem;
}

.back-button {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  font-size: 1.15rem;
}

.summary-card {
  padding: 5px 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(23, 37, 34, 0.06);
}

.summary-card dl {
  margin: 0;
}

.summary-card dl > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px solid #edf2f1;
}

.summary-card dl > div:last-child {
  border-bottom: 0;
}

.summary-card dt {
  color: var(--muted);
  font-size: 0.8rem;
}

.summary-card dd {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.summary-status {
  display: inline-block;
  padding: 5px 8px;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.78rem;
}

.summary-status.is-absent {
  background: var(--danger-soft);
  color: var(--danger);
}

.complete-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 20px auto 14px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 12px 28px rgba(15, 118, 110, 0.25);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
}

.centered {
  text-align: center;
}

.complete-copy {
  max-width: 390px;
  margin: 8px auto 24px;
}

.chat-preview {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  background: #dce9e6;
}

.bot-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 0.78rem;
}

.chat-column {
  min-width: 0;
  flex: 1;
}

.bot-name {
  display: block;
  margin: 0 0 5px 2px;
  color: #49615b;
  font-size: 0.71rem;
  font-weight: 800;
}

.chat-bubble {
  padding: 13px;
  border-radius: 5px 16px 16px;
  background: var(--surface);
  box-shadow: 0 5px 16px rgba(23, 37, 34, 0.09);
}

.chat-bubble strong {
  font-size: 0.86rem;
}

.chat-bubble p {
  margin: 8px 0 0;
  white-space: pre-line;
  font-size: 0.8rem;
  line-height: 1.6;
}

.chat-bubble .bot-memo {
  padding-top: 8px;
  border-top: 1px solid #edf2f1;
  color: #4d5f5b;
}

.chat-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.chat-actions button {
  min-height: 38px;
  border: 1px solid #bcd6d1;
  border-radius: 10px;
  background: #f4fbf9;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.chat-actions button:last-child {
  border-color: #efc2bd;
  background: #fff5f3;
  color: var(--danger);
}

.chat-column time {
  display: block;
  margin-top: 4px;
  color: #6f827d;
  font-size: 0.68rem;
}

.cancel-notice {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid #efc2bd;
  border-radius: 12px;
  background: var(--danger-soft);
  color: var(--danger);
  font-size: 0.78rem;
  font-weight: 800;
}

.history-panel {
  margin-top: 20px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.history-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.history-heading h3 {
  margin: 0;
  font-size: 0.94rem;
}

.history-heading span {
  color: var(--muted);
  font-size: 0.68rem;
}

.history-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.history-panel li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 10px;
  padding: 11px;
  border-radius: 11px;
  background: var(--surface-soft);
  font-size: 0.76rem;
}

.history-panel li strong {
  font-size: 0.8rem;
}

.history-panel li span {
  color: var(--muted);
}

.history-panel li em {
  align-self: center;
  grid-row: 1 / 3;
  grid-column: 2;
  padding: 4px 7px;
  border-radius: 7px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
}

.history-panel li em.is-cancelled {
  background: #eeeeee;
  color: #6e7472;
}

@media (min-width: 700px) {
  body {
    padding: 36px 0;
  }

  .app-shell {
    min-height: auto;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 26px;
    box-shadow: var(--shadow);
  }
}

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

  .status-return {
    grid-column: auto;
  }

  .summary-card dl > div {
    grid-template-columns: 78px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
