:root {
  --bg: #f4f7f1;
  --bg-2: #edf5ed;
  --surface: rgba(255, 255, 251, 0.8);
  --surface-strong: #fffef9;
  --line: rgba(70, 112, 84, 0.12);
  --text: #203228;
  --muted: #62756d;
  --accent: #4fa66f;
  --accent-strong: #2f7c4f;
  --accent-soft: #dff1e4;
  --sand: #f3e6cd;
  --danger: #bb6666;
  --shadow: 0 24px 60px rgba(64, 88, 70, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(121, 188, 141, 0.22), transparent 30%),
    radial-gradient(circle at right 15%, rgba(244, 223, 175, 0.28), transparent 25%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16)),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 46px,
      rgba(79, 166, 111, 0.028) 46px,
      rgba(79, 166, 111, 0.028) 47px
    );
  opacity: 0.5;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1520px, calc(100% - 56px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.screen {
  animation: rise 0.35s ease;
}

.glass {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hidden {
  display: none !important;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  color: var(--accent-strong);
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.site-header,
.site-nav,
.topbar,
.topbar-actions,
.hero-actions,
.mini-chart-top,
.panel-header,
.admin-tabs {
  display: flex;
  align-items: center;
}

.site-header,
.hero,
.landing-grid,
.metrics-grid,
.admin-grid,
.academic-grid,
.results-grid,
.dashboard-grid,
.insight-columns,
.user-hero-grid {
  display: grid;
  gap: 18px;
}

.site-header {
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.site-nav {
  gap: 10px;
  flex-wrap: wrap;
}

.nav-link {
  text-decoration: none;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.72);
  position: relative;
  overflow: visible;
}

.brand-mark img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
}

.brand-block strong,
.hero h1,
.hero-panel strong,
.landing-card h3,
.login-header h2,
.topbar h2,
.panel h3,
.profile-card h3,
.score-card strong,
.result-card strong,
.metric-card strong {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.03em;
}

.brand-block p,
.hero-lead,
.soft-note,
.landing-card p,
.metric-card p,
.login-header p,
.login-note,
.muted,
#score-objective,
.result-card p,
.carousel-slide p,
.news-item p,
.resource-card p {
  color: var(--muted);
  line-height: 1.62;
}

.hero {
  grid-template-columns: 1.18fr 0.82fr;
  margin-bottom: 18px;
}

.hero-copy {
  padding: 18px 4px 12px 0;
}

.hero h1 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 2.7vw, 3.15rem);
  line-height: 1.05;
  max-width: 15ch;
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.soft-note {
  max-width: 460px;
}

.hero-mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.hero-mini-metrics article,
.timeline-list div,
.resource-card,
.news-item {
  border-radius: 20px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(70, 112, 84, 0.08);
}

.hero-mini-metrics strong {
  display: block;
  margin-bottom: 6px;
}

.hero-panel,
.landing-card,
.login-card,
.metric-card,
.panel,
.profile-card,
.score-card,
.result-card {
  border-radius: 28px;
  padding: 22px;
}

.hero-panel {
  display: grid;
  gap: 16px;
  background:
    radial-gradient(circle at top right, rgba(79, 166, 111, 0.15), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(246, 241, 231, 0.88));
}

.hero-panel-top {
  display: grid;
  gap: 0;
}

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

.hero-board-card,
.hero-status-footer,
.schedule-list div,
.contact-card {
  border-radius: 20px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(70, 112, 84, 0.08);
}

.hero-board-card.highlight {
  background: linear-gradient(135deg, rgba(223, 241, 228, 0.92), rgba(255, 251, 242, 0.78));
}

.hero-board-card span,
.hero-status-footer span {
  color: var(--muted);
}

.status-badge {
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 700;
}

.carousel {
  position: relative;
  min-height: 240px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(70, 112, 84, 0.08);
}

.carousel-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.slide-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 700;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(47, 124, 79, 0.22);
  cursor: pointer;
}

.carousel-dot.active {
  background: var(--accent-strong);
}

.landing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.public-section {
  margin-top: 28px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.9rem;
}

.accent-card {
  background:
    radial-gradient(circle at top right, rgba(243, 230, 205, 0.85), transparent 35%),
    rgba(255, 255, 251, 0.82);
}

.timeline-list {
  display: grid;
  gap: 10px;
}

.timeline-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.timeline-list strong {
  color: var(--accent-strong);
}

.login-shell {
  min-height: 78vh;
  display: grid;
  place-items: center;
}

.schedule-grid,
.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.schedule-list,
.contact-list {
  display: grid;
  gap: 10px;
}

.contact-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(246, 249, 243, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.contact-card.wide {
  grid-column: span 2;
}

.schedule-list strong,
.contact-card strong {
  display: block;
  margin-bottom: 4px;
}

.contact-card span {
  color: var(--muted);
  line-height: 1.65;
}

.map-card iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 20px;
}

.login-card {
  width: min(1040px, 100%);
}

.login-layout {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 26px;
  align-items: stretch;
}

.login-content,
.login-form-panel {
  display: grid;
  gap: 14px;
}

.back-btn {
  width: fit-content;
}

.login-content h2 {
  margin: 0;
  font-size: 2rem;
}

.login-benefits {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.login-benefits div {
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(70, 112, 84, 0.08);
}

.login-benefits strong {
  display: block;
  margin-bottom: 4px;
}

.login-form-grid,
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.login-form-grid label,
.form-grid label {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
}

.full {
  grid-column: 1 / -1;
}

.eval-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  grid-column: 1 / -1;
}

.form-feedback {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 0.95rem;
}

.form-feedback.success {
  background: rgba(79, 166, 111, 0.12);
  color: var(--accent-strong);
  border: 1px solid rgba(79, 166, 111, 0.18);
}

.form-feedback.error {
  background: rgba(187, 102, 102, 0.12);
  color: #8a3b3b;
  border: 1px solid rgba(187, 102, 102, 0.18);
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(70, 112, 84, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border-radius: 16px;
  padding: 11px 13px;
  transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(79, 166, 111, 0.72);
  background: var(--surface-strong);
  transform: translateY(-1px);
}

.btn {
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  padding: 11px 16px;
  font-weight: 700;
  transition: transform 0.18s ease, opacity 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  color: #f7fff8;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: 0 12px 24px rgba(79, 166, 111, 0.24);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.56);
  color: var(--text);
  border: 1px solid rgba(70, 112, 84, 0.12);
}

.btn.danger {
  background: rgba(187, 102, 102, 0.12);
  color: #8a3b3b;
  border: 1px solid rgba(187, 102, 102, 0.16);
}

.btn:disabled {
  opacity: 0.55;
  transform: none;
  cursor: not-allowed;
}

.login-note {
  margin-top: 16px;
}

.link-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--accent-strong);
  font: inherit;
  font-weight: 700;
  text-align: left;
  padding: 0;
  margin-top: 12px;
  cursor: pointer;
}

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

.topbar {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.topbar-actions {
  gap: 10px;
  flex-wrap: wrap;
}

.topbar h2 {
  margin: 10px 0 0;
  font-size: 1.66rem;
}

.admin-tabs {
  gap: 10px;
  margin-bottom: 18px;
}

.admin-tab-btn.active {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #f7fff8;
  border-color: transparent;
}

.metrics-grid {
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  margin-bottom: 18px;
}

.metric-card span,
.result-card span,
.mini-chart-top span {
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 700;
}

.metric-card strong,
.score-card strong,
.result-card strong {
  display: block;
  font-size: 1.78rem;
  margin: 8px 0 6px;
}

.admin-grid {
  grid-template-columns: 0.9fr 1.1fr;
  margin-bottom: 18px;
}

.academic-grid {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 18px;
}

.users-list,
.history-list,
.resource-grid,
.news-list,
.mini-chart-list,
.appointments-list,
.habit-list,
.discipline-list,
.roster-list,
.search-results,
.calendar-events {
  display: grid;
  gap: 12px;
}

.user-row,
.history-item {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr auto;
  gap: 12px;
  align-items: center;
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(70, 112, 84, 0.08);
}

.row-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.score-actions {
  margin-top: 16px;
}

.appointment-row {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.9fr 0.8fr;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(70, 112, 84, 0.08);
}

.compact-actions {
  margin-top: 8px;
}

.discipline-card,
.roster-row,
.search-row,
.calendar-day {
  border-radius: 18px;
  border: 1px solid rgba(70, 112, 84, 0.08);
  background: rgba(255, 255, 255, 0.66);
}

.discipline-card {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.discipline-card-main {
  text-align: left;
  padding: 0;
  background: transparent;
  border: 0;
}

.discipline-card span,
.calendar-day header span {
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.discipline-card strong {
  display: block;
  margin: 6px 0;
}

.discipline-year-group {
  display: grid;
  gap: 10px;
}

.discipline-year-header,
.discipline-professor-group header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.discipline-year-group h4 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.discipline-year-count,
.discipline-professor-group header span {
  color: var(--muted);
  font-size: 0.88rem;
}

.discipline-professor-group {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(70, 112, 84, 0.08);
}

.discipline-year-list {
  display: grid;
  gap: 12px;
}

.discipline-card.selected {
  border-color: rgba(79, 166, 111, 0.34);
  box-shadow: inset 0 0 0 1px rgba(79, 166, 111, 0.16);
}

.roster-row,
.search-row {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr auto;
  gap: 12px;
  align-items: center;
  padding: 15px 16px;
}

.calendar-grid {
  display: block;
}

.calendar-table-wrap {
  overflow-x: auto;
  padding-bottom: 6px;
}

.calendar-table {
  width: 100%;
  min-width: 700px;
  border-collapse: separate;
  border-spacing: 6px;
  table-layout: fixed;
}

.calendar-weekday {
  text-align: center;
  padding: 8px 6px;
  border-radius: 12px;
  background: rgba(223, 241, 228, 0.68);
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.calendar-day {
  padding: 8px;
  min-height: 94px;
  vertical-align: top;
  height: 94px;
}

.calendar-day-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.calendar-day strong {
  font-family: "Sora", sans-serif;
  font-size: 0.84rem;
}

.calendar-day.today {
  border-color: rgba(79, 166, 111, 0.34);
  box-shadow: inset 0 0 0 1px rgba(79, 166, 111, 0.16);
}

.calendar-event {
  display: grid;
  gap: 2px;
  padding: 4px 6px;
  border-radius: 8px;
  background: rgba(79, 166, 111, 0.11);
  color: var(--accent-strong);
  font-size: 0.7rem;
  font-weight: 700;
}

.calendar-event span {
  color: var(--text);
  font-size: 0.68rem;
  font-weight: 600;
}

.calendar-empty {
  padding-top: 4px;
  font-size: 0.7rem;
}

.calendar-more {
  margin-top: 4px;
  font-size: 0.67rem;
  color: var(--muted);
}

.inline-filter {
  display: grid;
  gap: 6px;
  min-width: 150px;
}

.inline-filter span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 700;
}

.muted-day {
  opacity: 0.52;
}

.search-box {
  margin-bottom: 12px;
}

.appointment-badge {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(79, 166, 111, 0.14);
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 700;
}

.appointment-badge.warn {
  background: rgba(243, 196, 94, 0.2);
  color: #916b10;
}

.appointment-badge.error {
  background: rgba(187, 102, 102, 0.16);
  color: #8a3b3b;
}

.user-hero-grid {
  grid-template-columns: 0.92fr 1.08fr;
  margin-bottom: 18px;
}

.results-grid {
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  margin-bottom: 18px;
}

.dashboard-grid {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 18px;
}

.user-content-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.panel-header {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.bullet-list {
  margin: 0;
  padding-left: 18px;
}

.bullet-list li {
  color: var(--muted);
  line-height: 1.6;
}

.bullet-list li + li {
  margin-top: 7px;
}

.insight-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-chart-list {
  gap: 14px;
}

.mini-chart-item {
  display: grid;
  gap: 8px;
}

.mini-chart-top {
  justify-content: space-between;
  gap: 12px;
}

.mini-chart-track {
  height: 12px;
  border-radius: 999px;
  background: rgba(79, 166, 111, 0.12);
  overflow: hidden;
}

.mini-chart-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #7bc390);
  transition: width 0.45s ease;
}

.resource-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resource-card a,
.news-item a {
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration: none;
}

.resource-card a:hover,
.news-item a:hover {
  text-decoration: underline;
}

.news-item {
  display: grid;
  gap: 8px;
}

.news-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.habit-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: center;
  text-align: left;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(70, 112, 84, 0.08);
}

.habit-item.done {
  background: rgba(223, 241, 228, 0.72);
  border-color: rgba(79, 166, 111, 0.2);
}

.habit-check {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(79, 166, 111, 0.28);
  color: var(--surface-strong);
  background: rgba(79, 166, 111, 0.12);
  font-weight: 700;
}

.habit-item.done .habit-check {
  background: var(--accent-strong);
}

.tracker-message {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-weight: 600;
}

.water-progress {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.water-progress-track {
  height: 14px;
  border-radius: 999px;
  background: rgba(79, 166, 111, 0.12);
  overflow: hidden;
}

.water-progress-fill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #59b8bf, #7bd8da);
  transition: width 0.3s ease;
}

.water-actions {
  display: grid;
  grid-template-columns: 1.3fr auto auto;
  gap: 12px;
  align-items: end;
}

.water-input {
  display: grid;
  gap: 8px;
}

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

.tracker-pill {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(70, 112, 84, 0.08);
}

.tracker-pill strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  min-width: 240px;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 251, 0.96);
  border: 1px solid rgba(79, 166, 111, 0.2);
  box-shadow: var(--shadow);
}

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

@media (min-width: 1400px) {
  .form-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .login-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .hero,
  .landing-grid,
  .admin-grid,
  .academic-grid,
  .results-grid,
  .dashboard-grid,
  .metrics-grid,
  .hero-mini-metrics,
  .hero-panel-board,
  .insight-columns,
  .resource-grid,
  .user-content-grid,
  .user-hero-grid,
  .schedule-grid,
  .contact-grid,
  .login-layout,
  .appointment-row,
  .tracker-summary,
  .water-actions {
    grid-template-columns: 1fr;
  }

  .calendar-table {
    min-width: 860px;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .contact-card.wide {
    grid-column: auto;
  }

  .user-row,
  .history-item,
  .roster-row,
  .search-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 22px, 1520px);
    padding-top: 18px;
  }

  .site-header,
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-panel,
  .landing-card,
  .login-card,
  .metric-card,
  .panel,
  .profile-card,
  .score-card,
  .result-card {
    padding: 18px;
    border-radius: 22px;
  }

  .hero h1 {
    max-width: none;
    font-size: 2rem;
  }

  .login-form-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .eval-group {
    grid-template-columns: 1fr;
  }

  .carousel {
    min-height: 280px;
  }
}
