/*
  TFJ design tokens and rollout overrides.

  This file is intentionally loaded after app.css so the typography and elevation
  scheme can be reviewed or rolled back by removing one stylesheet link from
  judge/templates/base.html. Future agents should treat the role tokens below as the
  public source of truth for neutral text on white UI surfaces.

  Color roles:
  - accent:    --tfj-accent-color (#418efe)
  - soft:      --tfj-accent-soft-color (neutral replacement for pale sage)
  - sky:       --tfj-accent-sky-color (light blue accent only when needed)
  - success:   --tfj-status-success-color (semantic done/success green)

  Typography role pairs:
  - display:   --tfj-type-display-weight + --tfj-type-display-color
  - title:     --tfj-type-title-weight   + --tfj-type-title-color
  - subtitle:  --tfj-type-subtitle-weight + --tfj-type-subtitle-color
  - body:      --tfj-type-body-weight    + --tfj-type-body-color
  - muted:     --tfj-type-muted-weight   + --tfj-type-muted-color
  - nav:       --tfj-type-nav-weight     + --tfj-type-nav-color
*/

:root {
  --tfj-accent-color: #418efe;
  --tfj-accent-hover-color: #0b6cff;
  --tfj-accent-sky-color: #a3cbff;
  --tfj-accent-soft-color: #f1f5f9;
  --tfj-accent-tint-color: #eef4ff;
  --tfj-accent-border-color: #bfd5ff;
  --tfj-status-success-color: #16805f;
  --primary: var(--tfj-accent-color);
  --primary-dark: var(--tfj-accent-hover-color);
  --primary-soft: var(--tfj-accent-soft-color);
  --green: var(--tfj-status-success-color);

  --tfj-type-display-color: #0f172a;
  --tfj-type-display-weight: 850;
  --tfj-type-title-color: #111827;
  --tfj-type-title-weight: 780;
  --tfj-type-subtitle-color: #475569;
  --tfj-type-subtitle-weight: 620;
  --tfj-type-body-color: #334155;
  --tfj-type-body-weight: 520;
  --tfj-type-muted-color: #64748b;
  --tfj-type-muted-weight: 560;
  --tfj-type-support-color: #64748b;
  --tfj-type-support-weight: 650;
  --tfj-type-nav-color: #334155;
  --tfj-type-nav-weight: 760;
  --tfj-type-nav-muted-color: #64748b;
  --tfj-type-nav-muted-weight: 700;
  --tfj-type-sidebar-project-color: #111111;
  --tfj-type-sidebar-project-weight: 820;
  --tfj-type-sidebar-home-icon-color: #a0a4ad;
  --tfj-type-sidebar-account-color: #6b7280;
  --tfj-type-sidebar-account-weight: 650;
  --tfj-type-sidebar-account-size: 14px;

  --tfj-shadow-subtle: 0 5px 12px -8px rgba(15, 23, 42, 0.22), 0 2px 5px -4px rgba(15, 23, 42, 0.12);
  --tfj-shadow-card: 0 10px 20px -14px rgba(15, 23, 42, 0.26), 0 4px 10px -8px rgba(15, 23, 42, 0.14);
  --tfj-shadow-raised: 0 14px 28px -18px rgba(15, 23, 42, 0.30), 0 7px 14px -10px rgba(15, 23, 42, 0.16);
  --tfj-shadow-floating: 0 22px 42px -26px rgba(15, 23, 42, 0.40), 0 12px 22px -18px rgba(15, 23, 42, 0.22);
  --tfj-shadow-button: 0 8px 16px -10px rgba(15, 23, 42, 0.30), 0 3px 7px -5px rgba(15, 23, 42, 0.16);

  --tfj-control-height: 42px;
  --tfj-control-compact-height: 34px;
  --tfj-control-mobile-height: 44px;
  --tfj-control-radius: 8px;
  --tfj-control-gap: 8px;
  --tfj-control-font-size: 14px;
  --tfj-control-font-weight: 800;
  --tfj-control-border-color: #cbd5e1;
  --tfj-control-neutral-bg: #ffffff;
  --tfj-control-neutral-hover-bg: #f8fafc;
  --tfj-control-disabled-bg: #e2e8f0;
  --tfj-control-disabled-border: #d5dde8;
  --tfj-control-disabled-text: #94a3b8;
  --tfj-focus-ring: rgba(65, 142, 254, 0.24);
  --tfj-danger-color: #c03434;
  --tfj-danger-hover-color: #a12828;
  --tfj-danger-soft-color: #fff1f2;
  --tfj-danger-border-color: #fecdd3;
  --tfj-success-color: #16805f;
  --tfj-success-hover-color: #0f6b4e;
  --tfj-success-soft-color: #ecfdf5;
  --tfj-success-border-color: #a7e5ca;
  --tfj-warning-color: #a15c00;
  --tfj-warning-hover-color: #854d0e;
  --tfj-warning-soft-color: #fffbeb;
  --tfj-warning-border-color: #fde68a;
  --tfj-surface-color: #ffffff;
  --tfj-surface-subtle-color: #f8fafc;
  --tfj-border-color: #e2e8f0;
  --tfj-border-strong-color: #cbd5e1;
  --tfj-card-radius: 12px;
  --tfj-modal-radius: 14px;
  --tfj-input-height: 44px;
}

body:not(.embedded-preview) {
  --shadow: var(--tfj-shadow-card);
  --shadow-soft: var(--tfj-shadow-subtle);
  color: var(--tfj-type-body-color);
  font-weight: var(--tfj-type-body-weight);
}

body:not(.embedded-preview) .app-mode-switch {
  display: grid;
  grid-template-columns: minmax(54px, 0.8fr) minmax(84px, 1.2fr);
  width: min(100%, 210px);
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--tfj-accent-border-color);
  border-radius: 12px;
  background: var(--tfj-accent-tint-color);
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.08);
}

body:not(.embedded-preview) .app-mode-switch__option {
  position: relative;
  z-index: 0;
  display: inline-flex;
  min-width: 0;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--tfj-type-nav-color);
  font-size: 13px;
  font-weight: var(--tfj-control-font-weight);
  line-height: 1;
  white-space: nowrap;
  touch-action: manipulation;
  transition: background-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

body:not(.embedded-preview) .app-mode-switch__option:not([aria-current="page"]):hover {
  background: #ffffff;
  color: var(--tfj-accent-hover-color);
}

body:not(.embedded-preview) .app-mode-switch__option[aria-current="page"] {
  background: var(--tfj-accent-hover-color);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(11, 108, 255, 0.24);
}

body:not(.embedded-preview) .app-mode-switch__option[aria-current="page"]:hover {
  box-shadow: 0 6px 14px rgba(11, 108, 255, 0.3);
}

body:not(.embedded-preview) .app-mode-switch__option:focus-visible {
  z-index: 2;
  outline: 2px solid var(--tfj-accent-hover-color) !important;
  outline-offset: 2px !important;
}

@media (max-width: 760px) {
  body:not(.embedded-preview) .app-mode-switch {
    width: min(48vw, 190px);
    min-width: 148px;
  }

  body:not(.embedded-preview) .app-mode-switch__option {
    min-height: 44px;
    padding-inline: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-mode-switch__option {
    transition: none;
  }
}

body:not(.embedded-preview) :where(
  .page-title,
  .team-project-title,
  .brand-title,
  h1
) {
  color: var(--tfj-type-display-color) !important;
  font-weight: var(--tfj-type-display-weight) !important;
}

body:not(.embedded-preview) :where(
  h2,
  h3,
  h4,
  .panel h2,
  .card h3,
  .form-card-head h2,
  .metric strong,
  .task-title-row h3,
  .my-team-room-title h3,
  .admin-tabs strong
) {
  color: var(--tfj-type-title-color) !important;
  font-weight: var(--tfj-type-title-weight) !important;
}

body:not(.embedded-preview) :where(
  .page-subtitle,
  .team-project-subtitle,
  .section-head p,
  .form-card-head p,
  .panel-head p,
  .hero-copy
) {
  color: var(--tfj-type-subtitle-color) !important;
  font-weight: var(--tfj-type-subtitle-weight) !important;
}

body:not(.embedded-preview) :where(
  p,
  li,
  label,
  input,
  select,
  textarea,
  td,
  th,
  .task-card p,
  .my-task-main span,
  .my-team-room-card p,
  .settings-card-section p
) {
  color: var(--tfj-type-body-color);
  font-weight: var(--tfj-type-body-weight);
}

body:not(.embedded-preview) :where(
  .muted,
  .page-subtitle .muted,
  .small,
  small,
  .brand-subtitle,
  .brand-text small,
  .my-task-side time,
  .team-shell-page .topbar-left .team-shell-account
) {
  color: var(--tfj-type-muted-color) !important;
  font-weight: var(--tfj-type-muted-weight) !important;
}

body:not(.embedded-preview) :where(
  .team-shell-home-brand,
  .team-shell-project-name
) {
  color: var(--tfj-type-sidebar-project-color) !important;
  font-weight: var(--tfj-type-sidebar-project-weight) !important;
}

body:not(.embedded-preview).team-shell-page .topbar-left .team-shell-home-brand,
body:not(.embedded-preview).team-shell-page .topbar-left .team-shell-project-name {
  color: var(--tfj-type-sidebar-project-color) !important;
}

body:not(.embedded-preview).team-shell-page .topbar-left .team-shell-home-brand {
  gap: 8px !important;
  padding-left: 10px !important;
}

body:not(.embedded-preview).team-shell-page .team-shell-home-icon {
  width: 34px !important;
  height: 34px !important;
  transform: translate(-3px, -5px);
}

body:not(.embedded-preview).team-shell-page .topbar-left .team-shell-project-name {
  transform: translateX(-2px);
}

body:not(.embedded-preview).team-shell-page .team-shell-home-icon svg {
  fill: var(--tfj-type-sidebar-home-icon-color) !important;
  width: 29px !important;
  height: 29px !important;
  stroke: none !important;
}

body:not(.embedded-preview) :where(
  .nav-actions a,
  .team-shell-nav-link,
  .tabs a,
  .button.secondary,
  button.secondary
) {
  color: var(--tfj-type-nav-color) !important;
  font-weight: var(--tfj-type-nav-weight) !important;
}

body:not(.embedded-preview) :where(
  .team-shell-nav-link:not(.active),
  .nav-actions a:not(.active):not(.button),
  .tabs a:not(.active)
) {
  color: var(--tfj-type-nav-muted-color) !important;
  font-weight: var(--tfj-type-nav-muted-weight) !important;
}

body:not(.embedded-preview) :where(
  .topbar,
  .app-footer,
  .nav-account,
  .mobile-pc-notice
) {
  box-shadow: var(--tfj-shadow-subtle) !important;
}

body:not(.embedded-preview).team-shell-page .topbar-left .team-shell-account {
  color: var(--tfj-type-sidebar-account-color) !important;
  box-shadow: none !important;
  font-size: var(--tfj-type-sidebar-account-size) !important;
  font-weight: var(--tfj-type-sidebar-account-weight) !important;
  line-height: 1.35 !important;
}

@media screen and (min-width: 1020px) {
  body:not(.embedded-preview).team-shell-page .nav-actions {
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
  }
}

body:not(.embedded-preview) :where(
  .panel,
  .card,
  .form-card,
  .metric,
  .notice,
  .tabs,
  .admin-tabs,
  .admin-tab-panel,
  .admin-stat-group,
  .admin-user-card,
  .admin-list-item,
  .notification-item,
  .task-card,
  .task-management-panel,
  .task-control-group,
  .task-upload-row,
  .my-task-item,
  .my-team-room-panel,
  .my-team-room-card,
  .team-project-head,
  .dashboard-today-panel,
  .dashboard-helper-card,
  .settings-card-section
) {
  border-color: var(--tfj-border-color) !important;
  border-radius: var(--tfj-card-radius) !important;
  background-color: var(--tfj-surface-color);
  box-shadow: var(--tfj-shadow-card) !important;
}

body:not(.embedded-preview) :is(
  .account-settings-panel,
  .dialog-box,
  .modal,
  .tutorial-box,
  .report-lock-panel,
  .create-room-card,
  .create-room-aside
) {
  border-color: var(--tfj-border-color) !important;
  border-radius: var(--tfj-modal-radius) !important;
}

body:not(.embedded-preview) :is(
  .field input,
  .field select,
  .field textarea,
  .dialog-input,
  .account-settings-panel input,
  .account-settings-panel select,
  .account-settings-panel textarea
) {
  min-height: var(--tfj-input-height);
  border-color: var(--tfj-control-border-color) !important;
  border-radius: var(--tfj-control-radius) !important;
  background: var(--tfj-surface-color) !important;
  color: var(--tfj-type-body-color) !important;
  box-shadow: none !important;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

body:not(.embedded-preview) :is(
  .field input,
  .field select,
  .field textarea,
  .dialog-input,
  .account-settings-panel input,
  .account-settings-panel select,
  .account-settings-panel textarea
):focus {
  border-color: var(--tfj-accent-color) !important;
  box-shadow: 0 0 0 3px var(--tfj-focus-ring) !important;
}

body:not(.embedded-preview) :is(input[type="checkbox"], input[type="radio"]) {
  accent-color: var(--tfj-accent-color);
}

body:not(.embedded-preview) :is(
  .tabs a,
  .admin-tab,
  .admin-tabs button,
  .account-nav-list button,
  .settings-side-nav button,
  .schedule-view-toggle button,
  .task-filter-chips button,
  .my-task-filter-row button
) {
  border-radius: var(--tfj-control-radius) !important;
  transition: border-color 0.16s ease, background-color 0.16s ease, color 0.16s ease;
}

body:not(.embedded-preview) :is(
  .tabs a.active,
  .admin-tab.active,
  .admin-tabs button.active,
  .admin-tabs button[aria-selected="true"],
  .account-nav-list button.active,
  .account-nav-list button[aria-selected="true"],
  .settings-side-nav button.active,
  .schedule-view-toggle button.active,
  .task-filter-chips button.active,
  .my-task-filter-row button.active
) {
  border-color: var(--tfj-accent-border-color) !important;
  background: var(--tfj-accent-tint-color) !important;
  color: var(--tfj-accent-hover-color) !important;
}

body:not(.embedded-preview) :is(table, .table, .member-roster-table, .audit-log-table) {
  border-color: var(--tfj-border-color) !important;
  border-radius: var(--tfj-card-radius);
}

body:not(.embedded-preview) :is(th, td, .table-row, .member-roster-row, .audit-log-row) {
  border-color: var(--tfj-border-color) !important;
}

body:not(.embedded-preview) :is(.empty, .loading, .skeleton-empty) {
  border-color: var(--tfj-border-color) !important;
  border-radius: 10px !important;
  background: var(--tfj-surface-subtle-color) !important;
  color: var(--tfj-type-muted-color) !important;
}

body:not(.embedded-preview) :is(.status.done, .status.success, .badge.success, .task-status-chip.done) {
  border-color: var(--tfj-success-border-color) !important;
  background: var(--tfj-success-soft-color) !important;
  color: var(--tfj-success-color) !important;
}

body:not(.embedded-preview) :is(.status.warning, .badge.warning, .task-status-chip.warning) {
  border-color: var(--tfj-warning-border-color) !important;
  background: var(--tfj-warning-soft-color) !important;
  color: var(--tfj-warning-color) !important;
}

body:not(.embedded-preview) :is(.status.danger, .status.late, .badge.danger, .task-status-chip.danger, .risk-badge.danger) {
  border-color: var(--tfj-danger-border-color) !important;
  background: var(--tfj-danger-soft-color) !important;
  color: var(--tfj-danger-color) !important;
}

body:not(.embedded-preview) :is(.notice:not(.warning):not(.danger):not(.success)) {
  border-color: var(--tfj-accent-border-color) !important;
  background: var(--tfj-accent-tint-color) !important;
  color: var(--tfj-accent-hover-color) !important;
}

body:not(.embedded-preview) :is(.notice.success, .message.success) {
  border-color: var(--tfj-success-border-color) !important;
  background: var(--tfj-success-soft-color) !important;
  color: var(--tfj-success-color) !important;
}

body:not(.embedded-preview) :is(.notice.warning, .message.warning) {
  border-color: var(--tfj-warning-border-color) !important;
  background: var(--tfj-warning-soft-color) !important;
  color: var(--tfj-warning-color) !important;
}

body:not(.embedded-preview) :is(.notice.danger, .message.error) {
  border-color: var(--tfj-danger-border-color) !important;
  background: var(--tfj-danger-soft-color) !important;
  color: var(--tfj-danger-color) !important;
}

body:not(.embedded-preview) :where(
  .button:not(.secondary):not(.danger),
  button.button:not(.secondary):not(.danger),
  button.primary,
  .create-flow strong
) {
  box-shadow: var(--tfj-shadow-button) !important;
}

body:not(.embedded-preview) :where(
  .modal,
  .report-document,
  .product-card,
  .judge-card
) {
  box-shadow: var(--tfj-shadow-floating) !important;
}

body:not(.embedded-preview) :where(
  .team-shell-helper-card:hover,
  .team-shell-helper-card:focus-visible,
  .button:not(.secondary):not(.danger):hover,
  button.primary:hover,
  .my-team-room-card:hover
) {
  box-shadow: var(--tfj-shadow-raised) !important;
}

/* Shared control contract. Page CSS may arrange buttons, but role and state stay global. */
body:not(.embedded-preview) :is(.button, button.button) {
  min-height: var(--tfj-control-height) !important;
  padding: 0 14px !important;
  gap: var(--tfj-control-gap);
  border: 1px solid transparent !important;
  border-radius: var(--tfj-control-radius) !important;
  font-size: var(--tfj-control-font-size) !important;
  font-weight: var(--tfj-control-font-weight) !important;
  line-height: 1 !important;
  box-shadow: none !important;
}

body:not(.embedded-preview) :is(.button.compact, button.button.compact) {
  min-height: var(--tfj-control-compact-height) !important;
  padding-inline: 11px !important;
  font-size: 13px !important;
}

body:not(.embedded-preview) :is(
  .button:not(.secondary):not(.danger):not(.success):not(.warning):not(.task-complete-button):not(:disabled):not([aria-disabled="true"]),
  button.button:not(.secondary):not(.danger):not(.success):not(.warning):not(.task-complete-button):not(:disabled):not([aria-disabled="true"]),
  button.primary:not(:disabled):not([aria-disabled="true"])
) {
  border-color: var(--tfj-accent-color) !important;
  background: var(--tfj-accent-color) !important;
  background-image: none !important;
  color: #ffffff !important;
}

body:not(.embedded-preview) :is(
  .button:not(.secondary):not(.danger):not(.success):not(.warning):not(.task-complete-button):not(:disabled):not([aria-disabled="true"]):hover,
  button.button:not(.secondary):not(.danger):not(.success):not(.warning):not(.task-complete-button):not(:disabled):not([aria-disabled="true"]):hover,
  button.primary:not(:disabled):not([aria-disabled="true"]):hover
) {
  border-color: var(--tfj-accent-hover-color) !important;
  background: var(--tfj-accent-hover-color) !important;
  color: #ffffff !important;
  transform: none !important;
  box-shadow: var(--tfj-shadow-button) !important;
}

body:not(.embedded-preview) :is(.button.secondary, button.secondary) {
  border-color: var(--tfj-control-border-color) !important;
  background: var(--tfj-control-neutral-bg) !important;
  color: var(--tfj-type-nav-color) !important;
  box-shadow: none !important;
}

body:not(.embedded-preview) :is(.button.secondary:hover, button.secondary:hover) {
  border-color: #94a3b8 !important;
  background: var(--tfj-control-neutral-hover-bg) !important;
  color: #0f172a !important;
  transform: none !important;
}

body:not(.embedded-preview) :is(.button.success, button.success, .button.task-complete-button) {
  border-color: var(--tfj-success-color) !important;
  background: var(--tfj-success-color) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

body:not(.embedded-preview) :is(.button.success:hover, button.success:hover, .button.task-complete-button:hover) {
  border-color: var(--tfj-success-hover-color) !important;
  background: var(--tfj-success-hover-color) !important;
  color: #ffffff !important;
  transform: none !important;
}

body:not(.embedded-preview) :is(.button.warning, button.warning) {
  border-color: var(--tfj-warning-border-color) !important;
  background: var(--tfj-warning-soft-color) !important;
  color: var(--tfj-warning-color) !important;
  box-shadow: none !important;
}

body:not(.embedded-preview) :is(.button.warning:hover, button.warning:hover) {
  border-color: var(--tfj-warning-hover-color) !important;
  background: var(--tfj-warning-hover-color) !important;
  color: #ffffff !important;
  transform: none !important;
}

body:not(.embedded-preview) :is(.button.danger, button.danger) {
  border-color: var(--tfj-danger-border-color) !important;
  background: var(--tfj-danger-soft-color) !important;
  color: var(--tfj-danger-color) !important;
  box-shadow: none !important;
}

body:not(.embedded-preview) :is(.button.danger:hover, button.danger:hover) {
  border-color: var(--tfj-danger-hover-color) !important;
  background: var(--tfj-danger-hover-color) !important;
  color: #ffffff !important;
  transform: none !important;
}

body:not(.embedded-preview) :is(
  button,
  a.button,
  [role="button"],
  input,
  select,
  textarea,
  summary
):focus-visible {
  outline: 3px solid var(--tfj-focus-ring) !important;
  outline-offset: 2px !important;
}

body:not(.embedded-preview) :is(.button, button.button, button.primary, button.secondary, button.success, button.warning, button.danger):disabled,
body:not(.embedded-preview) :is(.button, button.button, button.primary, button.secondary, button.success, button.warning, button.danger)[aria-disabled="true"] {
  border-color: var(--tfj-control-disabled-border) !important;
  background: var(--tfj-control-disabled-bg) !important;
  color: var(--tfj-control-disabled-text) !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  opacity: 1 !important;
  pointer-events: none;
  transform: none !important;
}

body:not(.embedded-preview) :is(.button, button.button):active:not(:disabled):not([aria-disabled="true"]) {
  transform: translateY(1px) !important;
}

body:not(.embedded-preview) :is(.button, button.button)[aria-busy="true"] {
  cursor: progress !important;
  pointer-events: none;
}

body:not(.embedded-preview) :is(.button, button.button)[aria-busy="true"]::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: tfj-control-spin 0.7s linear infinite;
}

body:not(.embedded-preview) :is(.button, button.button) > svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

body:not(.embedded-preview) :where(.actions, .form-actions, .account-form-actions, .admin-page-actions, .team-project-actions) {
  gap: var(--tfj-control-gap);
}

@keyframes tfj-control-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 720px) {
  body:not(.embedded-preview) :is(.button, button.button) {
    min-height: var(--tfj-control-mobile-height) !important;
  }

  body:not(.embedded-preview) :is(.button.compact, button.button.compact) {
    min-height: var(--tfj-control-mobile-height) !important;
  }

  body:not(.embedded-preview) :is(
    .mobile-toolbar-icon,
    .mobile-toolbar-account,
    .mobile-bottom-nav > a,
    .mobile-bottom-nav > .mobile-nav-more > summary,
    .mobile-more-sheet a,
    .task-filter-chips button,
    .my-task-filter-row button,
    .account-nav-list button,
    .settings-side-nav button,
    .schedule-view-toggle button
  ) {
    min-height: var(--tfj-control-mobile-height) !important;
  }

  body:not(.embedded-preview) :is(.mobile-toolbar-icon, .mobile-toolbar-account) {
    width: var(--tfj-control-mobile-height) !important;
    height: var(--tfj-control-mobile-height) !important;
    flex-basis: var(--tfj-control-mobile-height) !important;
  }

  body:not(.embedded-preview) :is(.field input, .field select, .field textarea) {
    min-height: var(--tfj-control-mobile-height) !important;
  }
}
