*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #ececee;
  --bg-wash: #f6f6f7;
  --surface: #ffffff;
  --surface-soft: #f5f5f7;
  --surface-quiet: #fafafc;
  --line: #d9dbe1;
  --line-strong: #cdd0d8;
  --text: #121317;
  --muted: #666b75;
  --muted-soft: #8f949f;
  --primary: #0a68d4;
  --primary-press: #0755af;
  --primary-soft: #eaf2ff;
  --good: #1f8f58;
  --warn: #ad6f13;
  --bad: #be4141;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-9: 40px;
  --shadow-sm: 0 1px 2px rgba(12, 14, 19, 0.06);
  --shadow-md: 0 10px 28px rgba(14, 16, 21, 0.08);
  --font-ui: "DM Sans", "Avenir Next", "Segoe UI", sans-serif;
  --font-title: "Bebas Neue", sans-serif;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  min-height: 100%;
  font-family: var(--font-ui);
  color: var(--text);
  background:
    radial-gradient(140% 110% at 100% -20%, rgba(10, 104, 212, 0.09), transparent 55%),
    radial-gradient(120% 130% at -10% 110%, rgba(134, 141, 154, 0.1), transparent 56%),
    var(--bg);
  overflow: hidden;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.app-shell {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.global-header {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 var(--space-7);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(17, 19, 24, 0.09);
  z-index: 10;
}

.header-logo {
  min-width: 0;
  display: flex;
  align-items: center;
}

.header-logo-img {
  width: clamp(144px, 14vw, 190px);
  height: auto;
  display: block;
  object-fit: contain;
}

.header-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  pointer-events: none;
}

.logo-badge {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #000;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.logo-badge-mark {
  width: 15px;
  height: 15px;
  display: block;
  border-radius: 999px;
  border: 2px solid #fff;
  background: transparent;
}

.header-center h1 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #0e0f12;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign-out-btn {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  min-height: 32px;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.sign-out-btn:hover:not(:disabled) {
  background: #fff;
  border-color: #aeb3be;
  transform: translateY(-1px);
}

.sign-out-btn:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.body {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr);
}

.sidebar {
  min-height: 0;
  overflow: auto;
  padding: var(--space-5) var(--space-4);
  background: rgba(255, 255, 255, 0.62);
  border-right: 1px solid rgba(18, 20, 25, 0.08);
  backdrop-filter: blur(8px);
}

.screen-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.screen-link,
.sidebar-item {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  text-align: left;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 540;
  color: #4f5461;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}

.screen-link:hover,
.sidebar-item:hover {
  color: #22252d;
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(18, 20, 25, 0.08);
}

.screen-link.active,
.sidebar-item.active {
  color: #093c76;
  background: var(--primary-soft);
  border-color: rgba(10, 104, 212, 0.22);
  font-weight: 620;
}

.screen-link.disabled {
  opacity: 0.45;
  pointer-events: none;
}

.legend-card {
  margin-top: var(--space-6);
}

.legend-title,
.teams-label,
.sidebar-label {
  margin: 0 0 var(--space-3);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8d92a0;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(18, 20, 25, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  color: #2d313b;
}

.canvas {
  min-width: 0;
  min-height: 0;
  overflow: auto;
  padding: var(--space-7);
}

.screen {
  display: none;
  animation: fade-up 260ms cubic-bezier(0.2, 0.7, 0.22, 1);
}

.screen.active {
  display: block;
}

#login.screen.active {
  min-height: calc(100vh - 146px);
  display: grid;
  place-items: center;
}

.login-content {
  width: min(380px, 100%);
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.auth-actions {
  width: 100%;
}

.google-btn {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  color: #3c4043;
  font-size: 15px;
  font-weight: 610;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 20px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(12, 14, 19, 0.09);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.google-btn:hover {
  border-color: #b8bcc6;
  box-shadow: 0 6px 16px rgba(12, 14, 19, 0.12);
  transform: translateY(-1px);
}

.google-btn:active {
  transform: translateY(0);
}

.google-icon {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

.helper-text {
  margin: 2px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.helper-text code {
  font-family: "DM Sans", ui-monospace, monospace;
  padding: 1px 4px;
  background: rgba(15, 17, 22, 0.07);
  border-radius: 5px;
  color: #565b66;
}

#registerBtn,
#loginMessage,
#authSessionLine {
  display: none !important;
}

.screen-head {
  margin-bottom: var(--space-5);
}

.eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7d8390;
}

.screen-head h2 {
  margin: 7px 0 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 650;
}

.screen-head p {
  margin: 9px 0 0;
  max-width: 860px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.kpi-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 20, 25, 0.1);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.95), rgba(248, 248, 250, 0.92));
  padding: 14px;
  box-shadow: var(--shadow-sm);
}

.kpi-card p {
  margin: 0;
  color: #727887;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.kpi-card h3 {
  margin: 8px 0 2px;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 670;
}

.leave-grid .kpi-card h3 {
  font-size: 22px;
}

.kpi-card small {
  color: #676d7a;
  font-size: 13px;
}

.panel {
  margin-top: 12px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 20, 25, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  padding: var(--space-4);
  padding-bottom: 24px;
}

.panel h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.02em;
  font-weight: 630;
}

.panel p,
.panel li,
.panel label,
.panel small {
  color: #4f5562;
}

.nested-panel,
.info-panel {
  border-radius: var(--radius-lg);
  border: 1px solid #f0f1f4;
  border-left: 4px solid var(--primary);
  background: #f8f8f8;
  padding: 20px;
}

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

.split > .panel {
  margin-top: 0;
}

.split > .nested-panel,
.split > .info-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.toolbar,
.editor-bar,
.profile-save-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.toolbar {
  margin-bottom: 12px;
}

.editor-bar {
  margin-top: 20px;
}

.planner-toolbar label,
.leave-form label {
  min-width: 160px;
}

.action-row input,
.action-row select {
  flex: 1 1 190px;
  min-width: 150px;
}

.action-row select {
  width: 100%;
  max-width: none;
}

.action-row button {
  flex: 0 0 auto;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline li {
  border-left: 2px solid rgba(18, 20, 25, 0.13);
  padding: 7px 0 7px 10px;
  line-height: 1.4;
  font-size: 14px;
}

.timeline.compact li {
  padding-top: 5px;
  padding-bottom: 5px;
}

.nested-panel .timeline,
.info-panel .timeline {
  display: grid;
  gap: 12px;
}

.nested-panel .timeline li,
.info-panel .timeline li {
  border-left-color: rgba(10, 104, 212, 0.3);
  padding: 0 0 0 12px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 14px;
}

form label,
.panel > div:not(.toolbar):not(.editor-bar):not(.action-row):not(.profile-save-row) > label {
  gap: 6px;
  margin-bottom: 18px;
}

form label:last-of-type,
.panel > div:not(.toolbar):not(.editor-bar):not(.action-row):not(.profile-save-row) > label:last-of-type {
  margin-bottom: 0;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: #242832;
  padding: 10px 11px;
  font-size: 14px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

select {
  width: fit-content;
  min-width: 152px;
  max-width: min(100%, 360px);
  padding: 10px 36px 10px 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23636a78' d='M1.1.3a.7.7 0 0 1 1 0L5 3.2 7.9.3a.7.7 0 1 1 1 1L5.5 4.7a.7.7 0 0 1-1 0L1.1 1.3a.7.7 0 0 1 0-1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px 6px;
  cursor: pointer;
}

form label > select,
form label > input,
form label > textarea,
.panel > div:not(.toolbar):not(.editor-bar):not(.action-row):not(.profile-save-row) > label > select,
.panel > div:not(.toolbar):not(.editor-bar):not(.action-row):not(.profile-save-row) > label > input,
.panel > div:not(.toolbar):not(.editor-bar):not(.action-row):not(.profile-save-row) > label > textarea {
  width: 100%;
  min-width: 0;
  max-width: none;
}

textarea {
  min-height: 84px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(10, 104, 212, 0.5);
  box-shadow: 0 0 0 3px rgba(10, 104, 212, 0.14);
}

.primary,
.ghost,
.name-link {
  border-radius: 11px;
  padding: 9px 13px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 620;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #0a5ec0);
  border-color: #0a5ec0;
  box-shadow: 0 8px 18px rgba(10, 104, 212, 0.28);
  margin-top: 20px;
}

.primary:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--primary-press), #064894);
  border-color: #064894;
  transform: translateY(-1px);
}

.editor-bar .primary,
.toolbar .primary,
.action-row .primary,
.profile-save-row .primary {
  margin-top: 0;
}

.ghost,
.name-link {
  color: #2b303a;
  background: #fff;
  border-color: rgba(18, 20, 25, 0.16);
}

.ghost:hover:not(:disabled),
.name-link:hover:not(:disabled) {
  background: #f9fafc;
  border-color: rgba(18, 20, 25, 0.24);
}

.small {
  font-size: 12px;
  padding: 6px 10px;
}

.primary:disabled,
.ghost:disabled,
.name-link:disabled,
.small:disabled {
  opacity: 0.52;
  cursor: not-allowed;
  transform: none;
}

.status {
  margin: 0;
  font-size: 13px;
  color: #2f5f96;
}

.status.warn {
  color: var(--warn);
}

.status.error {
  color: var(--bad);
}

.mini-meta {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.mini-label {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-soft);
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(18, 20, 25, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  margin-top: 6px;
}

thead th {
  text-align: left;
  padding: 10px 11px;
  font-size: 10px;
  font-weight: 700;
  color: #6f7582;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  background: #f8f9fc;
  border-bottom: 1px solid rgba(18, 20, 25, 0.1);
}

tbody td {
  padding: 10px 11px;
  border-bottom: 1px solid rgba(18, 20, 25, 0.08);
  color: #2c313a;
  font-size: 13px;
  vertical-align: top;
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr:hover {
  background: #f9fbff;
}

.inline-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #5f6572;
}

.inline-filter select {
  width: fit-content;
  min-width: 152px;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(34px, 1fr));
  gap: 8px;
}

.archive-cell {
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(18, 20, 25, 0.12);
  background: #fff;
  padding: 6px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  color: #646b78;
  font-size: 12px;
}

.archive-cell.has-tasks {
  border-color: rgba(10, 104, 212, 0.26);
  background: var(--primary-soft);
  color: #124d96;
  font-weight: 700;
  cursor: help;
}

.archive-cell.hidden-day {
  visibility: hidden;
}

.archive-empty-note {
  margin: 0;
  color: #6d7380;
  font-size: 13px;
}

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 700;
}

.chip.approved,
.chip.good {
  color: #13673d;
  background: rgba(31, 143, 88, 0.16);
}

.chip.pending,
.chip.warn {
  color: #7f5315;
  background: rgba(173, 111, 19, 0.16);
}

.chip.rejected,
.chip.bad {
  color: #9a3131;
  background: rgba(190, 65, 65, 0.15);
}

.heat {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
}

.heat.green {
  color: #13673d;
  background: rgba(31, 143, 88, 0.16);
}

.heat.amber {
  color: #7f5315;
  background: rgba(173, 111, 19, 0.16);
}

.heat.red {
  color: #9a3131;
  background: rgba(190, 65, 65, 0.15);
}

.dept-row td {
  background: #eef5ff;
  color: #1f4f8d;
  font-weight: 700;
}

.profile-top-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.profile-top-summary h3 {
  margin: 6px 0 0;
}

.profile-util-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-util-boxes > div {
  min-width: 130px;
  border: 1px solid rgba(18, 20, 25, 0.1);
  border-radius: 12px;
  background: #fff;
  padding: 10px;
}

.profile-util-boxes h3 {
  margin: 4px 0 0;
  font-size: 20px;
  letter-spacing: -0.02em;
}

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

.profile-save-row {
  margin-top: 20px;
}

.profile-save-row .mini-meta,
.profile-save-row .status {
  flex: 1 1 auto;
}

.leave-form {
  display: grid;
  gap: 10px;
}

#dailyTaskTable .name-link,
#peopleDirectoryBody .name-link {
  text-align: left;
}

.alloc-input {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.alloc-team-fixed {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid #e3e5eb;
  border-radius: 12px;
  background: #f7f8fa;
  color: #464c59;
}

.alloc-updated-at,
.employee-last-edit,
#profileLastAllocationEdit {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.ts-fresh {
  color: var(--good);
}

.ts-watch {
  color: var(--warn);
}

.ts-stale {
  color: var(--bad);
}

.stale-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 2px 7px;
  font-size: 10px;
  font-weight: 700;
}

.stale-badge.ts-fresh {
  background: rgba(31, 143, 88, 0.16);
  color: #13673d;
}

.stale-badge.ts-watch {
  background: rgba(173, 111, 19, 0.16);
  color: #7f5315;
}

.stale-badge.ts-stale {
  background: rgba(190, 65, 65, 0.15);
  color: #9a3131;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  display: inline-block;
}

.dot.green {
  background: var(--good);
}

.dot.amber {
  background: var(--warn);
}

.dot.red {
  background: var(--bad);
}

.footer-note {
  border-top: 1px solid rgba(17, 19, 24, 0.08);
  background: rgba(255, 255, 255, 0.7);
  padding: 9px var(--space-7) 12px;
  font-size: 10px;
  color: #8e93a0;
  letter-spacing: 0.02em;
}

.hidden {
  display: none !important;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(10, 104, 212, 0.16);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1360px) {
  .kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  body {
    overflow: auto;
  }

  .global-header {
    padding: 0 var(--space-4);
  }

  .header-center h1 {
    font-size: 26px;
    letter-spacing: 0.13em;
  }

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

  .sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(18, 20, 25, 0.09);
    padding: 12px;
  }

  .screen-nav {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .screen-link,
  .sidebar-item {
    white-space: nowrap;
    width: auto;
    min-width: 154px;
  }

  .legend-card {
    margin-top: 12px;
  }

  .canvas {
    padding: var(--space-4);
  }

  #login.screen.active {
    min-height: calc(100vh - 240px);
  }

  .split,
  .profile-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .global-header {
    height: 64px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 8px;
  }

  .header-logo-img {
    width: 118px;
  }

  .header-center {
    position: static;
    transform: none;
    justify-content: center;
  }

  .logo-badge {
    width: 27px;
    height: 27px;
  }

  .logo-badge-mark {
    width: 13px;
    height: 13px;
  }

  .header-center h1 {
    font-size: 20px;
    letter-spacing: 0.11em;
  }

  .sign-out-btn {
    min-height: 29px;
    padding: 0 11px;
    font-size: 11px;
  }

  .kpi-grid,
  .leave-grid {
    grid-template-columns: 1fr;
  }

  .panel {
    padding: 12px;
    padding-bottom: 24px;
  }

  .toolbar,
  .editor-bar,
  .profile-save-row,
  .action-row {
    flex-direction: column;
    align-items: stretch;
  }

  .inline-filter {
    width: 100%;
    justify-content: space-between;
  }

  .inline-filter select {
    width: fit-content;
    min-width: 152px;
    max-width: 100%;
    flex: 0 1 auto;
  }

  .action-row input,
  .action-row select,
  .action-row button {
    width: 100%;
  }

  #allocationTable,
  #dailyTaskTable,
  #leaveApprovalTable,
  #teamLeaveCalendarTable {
    font-size: 12px;
  }

  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  thead th,
  tbody td {
    padding: 8px 9px;
  }

  .login-content {
    width: min(380px, 100%);
  }

  .google-btn {
    min-height: 46px;
    font-size: 14px;
  }

  .footer-note {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
    font-size: 9px;
  }
}
