/* Loading screen styles */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #008080;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-family: 'MS Sans Serif', sans-serif;
}

.loading-content {
  text-align: center;
  color: white;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-text {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.loading-subtext {
  font-size: 12px;
  opacity: 0.8;
}

/* Hide main content during loading */
body.loading .container {
  visibility: hidden;
}

body.loading .generated-at {
  visibility: hidden;
}

/* Quest comparison table styles */
tbody tr {
  --mobile-sticky-background: #ffffff;
}

tbody :where(tr:not(.all-completed):not(.not-started-by-any):not(.completed-by-one):nth-child(even)) {
  background-color: #ececec;
  --mobile-sticky-background: #ececec;
}

.status-in-progress {
  background-color: yellow;
}

.status-completed {
  background-color: lime;
}

tr.all-completed {
  background-color: #3a8e3a;
  --mobile-sticky-background: #3a8e3a;
  color: white;
  font-weight: bold;
}

table.interactive tbody tr.all-completed:hover {
  background-color: #2a7e2a !important;
}

tr.all-completed td {
  background-color: inherit !important;
}

tr.not-started-by-any {
  background-color: #cccccc;
  --mobile-sticky-background: #cccccc;
}

tr.completed-by-one {
  background-color: #a6d8f0;
  --mobile-sticky-background: #a6d8f0;
}

/* Layout styles */
html {
  background: #008080;
}

body {
  min-width: 0;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.site-intro {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  padding: 10px;
  background: #ffffff;
  box-shadow: inset -1px -1px #ffffff, inset 1px 1px #808080, inset -2px -2px #dfdfdf, inset 2px 2px #0a0a0a;
}

.site-intro-icon {
  flex: 0 0 auto;
  image-rendering: pixelated;
}

.site-intro-copy {
  min-width: 0;
}

.site-intro h1 {
  margin: 0 0 4px;
  font-size: 18px;
  line-height: 1.1;
}

.site-intro p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}

.site-attribution {
  margin: 0 0 18px;
  color: #303030;
  font-size: 11px;
  line-height: 1.45;
}

.site-attribution a {
  color: #000080;
  font-weight: bold;
  white-space: nowrap;
}

.main-window {
  margin: 32px;
  width: 800px;
  max-width: calc(100vw - 80px);
}

.player-selection {
  margin-bottom: 20px;
}

.window-visibility {
  margin-bottom: 15px;
}

.player-options,
.window-options {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 10px;
}

.player-option,
.window-option {
  display: flex;
  min-width: 0;
}

.player-label,
.window-label,
.time-period-control {
  display: flex;
  align-items: center;
  gap: 5px;
}

.player-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.time-period-control {
  margin-left: 10px;
}

.window-actions {
  margin-top: 10px;
}

.chart-frame {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 360px;
  max-height: 600px;
}

.chart-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.skill-control {
  margin-bottom: 15px;
}

/* Level comparison styles */
.level-cell {
  text-align: center;
  font-weight: bold;
}

.level-high {
  color: #006600;
}

.level-medium {
  color: #cc6600;
}

.level-low {
  color: #cc0000;
}

/* Ranking styles */
.rank-1st {
  background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
  border: 2px solid #b8860b !important;
  color: #000 !important;
  font-weight: bold !important;
  position: relative;
}

.rank-1st::before {
  content: "🥇";
  position: absolute;
  top: -2px;
  right: -2px;
  font-size: 12px;
}

.rank-2nd {
  background: linear-gradient(135deg, #c0c0c0, #e8e8e8) !important;
  border: 2px solid #a0a0a0 !important;
  color: #000 !important;
  font-weight: bold !important;
  position: relative;
}

.rank-2nd::before {
  content: "🥈";
  position: absolute;
  top: -2px;
  right: -2px;
  font-size: 12px;
}

.rank-3rd {
  background: linear-gradient(135deg, #cd7f32, #d4a574) !important;
  border: 2px solid #8b5a2b !important;
  color: #000 !important;
  font-weight: bold !important;
  position: relative;
}

.rank-3rd::before {
  content: "🥉";
  position: absolute;
  top: -2px;
  right: -2px;
  font-size: 12px;
}

/* Shared sticky header styles */
.sticky-header thead th {
  position: sticky;
  top: 0;
  background-color: #c0c0c0;
  z-index: 10;
  border-bottom: 2px solid #808080;
}

/* Shared sticky total row styles */
.sticky-total-row td {
  position: sticky;
  bottom: 0;
  background: #f0f0f0;
  font-weight: bold;
  border-top: 3px solid #000;
  z-index: 5;
}

.sticky-total-row {
  --mobile-sticky-background: #f0f0f0;
}

/* Achievement diary styles */
.diary-complete {
  background-color: #3a8e3a;
  --mobile-sticky-background: #3a8e3a;
  color: white;
  font-weight: bold;
}

.diary-partial {
  background-color: #ffcc00;
  --mobile-sticky-background: #ffcc00;
}

.diary-not-started {
  background-color: #cccccc;
  --mobile-sticky-background: #cccccc;
}

/* Music track styles */
.music-track-unlocked {
  background-color: #3a8e3a;
  --mobile-sticky-background: #3a8e3a;
  color: white;
  font-weight: bold;
}

.music-track-locked {
  background-color: #cccccc;
  --mobile-sticky-background: #cccccc;
}

.music-track-unknown {
  background-color: #eeeeee;
  --mobile-sticky-background: #eeeeee;
  color: #555555;
  font-weight: bold;
}

/* Achievement styles */
.achievement-new {
  background-color: #ffcc00;
  font-weight: bold;
}

.achievement-quest {
  background-color: #4bc0c0;
}

.achievement-level {
  background-color: #ff9f40;
}

.achievement-diary {
  background-color: #9966ff;
}

.achievement-music {
  background-color: #36a2eb;
}

.achievement-combat {
  background-color: #ff6384;
}

.achievement-collection {
  background-color: #9966ff;
}

.achievement-collection_item {
  background-color: #c9cbcf;
}

.achievement-league {
  background-color: #ff9f40;
}

.achievement-activity {
  background-color: #b7d5d4;
}

/* Window management styles */
.window.minimized .window-body {
  display: none;
}

.window.minimized {
  margin-bottom: 10px;
}

.window.dragging {
  opacity: 0.5;
  z-index: 1000;
}

.window {
  transition: transform 0.2s ease;
}

.title-bar {
  cursor: grab;
}

.title-bar:active {
  cursor: grabbing;
}

.container.drag-over {
  background-color: rgba(255, 255, 255, 0.1);
}

.drop-indicator {
  position: absolute;
  background-color: #00ff00;
  height: 4px;
  width: 100%;
  border-radius: 2px;
  z-index: 999;
  display: none;
}

/* Generated timestamp styles */
.generated-at {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  z-index: 1000;
}

/* Player selection styles */
.player-label.unselected .player-name {
  text-decoration: line-through;
  color: #888;
  opacity: 0.6;
}

.player-label {
  transition: all 0.2s ease;
}

.window-label.unselected .window-name {
  text-decoration: line-through;
  color: #888;
  opacity: 0.6;
}

.window.hidden {
  display: none !important;
}

button:focus-visible,
select:focus-visible,
input:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid #000080;
  outline-offset: 2px;
}

.player-option input:focus-visible + .player-label,
.window-option input:focus-visible + .window-label {
  outline: 2px solid #000080;
  outline-offset: 2px;
}

/* Keep the 98.css minimize glyph when the accessible action changes to Restore. */
.title-bar-controls button[aria-controls] {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='6' height='2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23000' d='M0 0h6v2H0z'/%3E%3C/svg%3E") !important;
  background-position: 4px calc(100% - 3px) !important;
  background-repeat: no-repeat !important;
}

/* Collection log styles */
.collection-complete {
  background-color: #3a8e3a;
  --mobile-sticky-background: #3a8e3a;
  color: white;
  font-weight: bold;
}

.collection-partial {
  background-color: #ffcc00;
  --mobile-sticky-background: #ffcc00;
}

.collection-has-item {
  background-color: #3a8e3a;
  color: white;
  font-weight: bold;
}

.collection-missing-item {
  background-color: #cccccc;
}

/* Combat achievements styles */
.combat-achievement-complete {
  background-color: #3a8e3a;
  --mobile-sticky-background: #3a8e3a;
  color: white;
  font-weight: bold;
}

.combat-achievement-partial {
  background-color: inherit;
}

.combat-achievement-none {
  background-color: inherit;
}

.combat-achievement-completed {
  background-color: #3a8e3a;
  color: white;
  font-weight: bold;
}

.combat-achievement-not-completed {
  background-color: #cccccc;
}

/* Compact, card-based summaries avoid another wide comparison table. */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.empty-panel-message {
  margin: 8px;
}

.overview-grid,
.sailing-player-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.overview-card,
.sailing-player-card {
  min-width: 0;
  padding: 8px;
  border-left: 6px solid var(--player-accent, #008080);
  background: #c0c0c0;
  box-shadow: inset -1px -1px #808080, inset 1px 1px #ffffff;
}

.overview-card-header,
.sailing-player-heading,
.sailing-chart-group-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.overview-card-header {
  margin-bottom: 7px;
  padding-bottom: 5px;
  border-bottom: 1px solid #808080;
}

.overview-card-header span {
  color: #444444;
  font-size: 11px;
  text-align: right;
}

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

.overview-metric {
  min-width: 0;
  padding: 6px;
  background: #ffffff;
  box-shadow: inset -1px -1px #ffffff, inset 1px 1px #808080;
}

.overview-metric-label,
.overview-metric-value {
  display: block;
  overflow-wrap: anywhere;
}

.overview-metric-label {
  color: #555555;
  font-size: 11px;
}

.sailing-intro {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: #000080;
  color: #ffffff;
}

.sailing-intro a {
  color: #ffffff;
}

.sailing-player-grid {
  margin: 10px 0;
}

.sailing-player-total {
  margin: 6px 0 4px;
  font-weight: bold;
}

.sailing-progress-track {
  box-sizing: border-box;
  width: 100%;
  height: 16px;
  padding: 2px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: inset -1px -1px #ffffff, inset 1px 1px #808080;
}

.sailing-progress-track > span {
  display: block;
  height: 100%;
  background-color: #008080;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 8px,
    rgba(255, 255, 255, 0.45) 8px,
    rgba(255, 255, 255, 0.45) 9px
  );
}

.sailing-metadata-warning {
  display: block;
  margin-top: 5px;
  color: #7a3200;
}

.sailing-data-note {
  margin: 10px 0;
  padding: 7px;
  border: 1px solid #808080;
  background: #ffffe1;
}

.sailing-explorer-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.sailing-explorer-controls label {
  display: grid;
  gap: 4px;
  min-width: 0;
  font-weight: bold;
}

.sailing-explorer-controls select {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
}

.sailing-explorer-results {
  margin-top: 10px;
}

.sailing-chart-group {
  margin: 10px 0;
  padding: 8px;
  background: #c0c0c0;
  box-shadow: inset -1px -1px #808080, inset 1px 1px #ffffff;
}

.sailing-chart-group-title {
  flex: 1;
  font-size: 16px;
}

.sailing-chart-group-heading {
  min-height: 36px;
  cursor: pointer;
  list-style: none;
}

.sailing-chart-group-heading::before {
  content: "\25B6";
  flex: 0 0 auto;
  font-size: 10px;
}

.sailing-chart-group[open] > .sailing-chart-group-heading::before {
  content: "\25BC";
}

.sailing-chart-group-body {
  margin-top: 6px;
}

.sailing-sea-group {
  margin-top: 8px;
  background: #ffffff;
  box-shadow: inset -1px -1px #ffffff, inset 1px 1px #808080;
}

.sailing-sea-group > summary {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 36px;
  padding: 4px 8px;
  cursor: pointer;
  background: #c0c0c0;
  font-weight: bold;
  list-style: none;
}

.sailing-chart-group-heading::-webkit-details-marker,
.sailing-sea-group > summary::-webkit-details-marker {
  display: none;
}

.sailing-sea-group > summary::before {
  content: "\25B6";
  flex: 0 0 auto;
  font-size: 10px;
}

.sailing-sea-group[open] > summary::before {
  content: "\25BC";
}

.sailing-sea-body {
  min-width: 0;
  padding: 8px;
}

.sailing-task-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.sailing-task {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 6px;
  padding: 7px 4px;
  border-top: 1px solid #dfdfdf;
}

.sailing-task-state {
  font-weight: bold;
  text-align: center;
}

.sailing-task.is-complete .sailing-task-state {
  color: #006600;
}

.sailing-task-copy {
  display: block;
  margin-top: 3px;
  overflow-wrap: anywhere;
}

/* Handheld desktop: retain the Windows 98 language while making every window
   behave like a native, edge-to-edge mobile card. */
@media (max-width: 700px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    -webkit-text-size-adjust: 100%;
  }

  body {
    margin: 0;
  }

  .loading-screen {
    box-sizing: border-box;
    padding-right: max(20px, env(safe-area-inset-right));
    padding-left: max(20px, env(safe-area-inset-left));
  }

  .generated-at {
    position: static;
    box-sizing: border-box;
    margin: max(8px, env(safe-area-inset-top)) max(8px, env(safe-area-inset-right)) 0 max(8px, env(safe-area-inset-left));
    border: 1px solid #ffffff;
    border-radius: 0;
    box-shadow: inset -1px -1px #000000, inset 1px 1px #dfdfdf;
    text-align: center;
  }

  .container {
    display: block;
    box-sizing: border-box;
    padding: 8px max(8px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
  }

  .main-window {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    margin: 0 0 12px;
  }

  .site-intro {
    gap: 10px;
    padding: 8px;
  }

  .site-intro-icon {
    width: 44px;
    height: 44px;
  }

  .site-attribution a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 4px;
  }

  .window {
    transition: none;
  }

  .window-body {
    min-width: 0;
    overflow: hidden;
  }

  .title-bar {
    min-height: 44px;
    cursor: default !important;
    touch-action: manipulation;
  }

  .title-bar-text {
    min-width: 0;
    overflow: hidden;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .title-bar-controls {
    display: flex;
    flex: 0 0 auto;
    gap: 3px;
  }

  .title-bar-controls button {
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
  }

  .title-bar-controls button[aria-controls] {
    background-position: center !important;
    background-size: 12px 4px !important;
  }

  .title-bar-controls button[aria-label="Close"] {
    background-position: center !important;
    background-size: 14px 13px !important;
  }

  .drop-indicator {
    display: none !important;
  }

  .configuration-window h3 {
    margin: 12px 0 8px;
    font-size: 16px;
  }

  .configuration-window h3:first-child {
    margin-top: 4px;
  }

  .player-options,
  .window-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 12px;
  }

  .player-option,
  .window-option {
    box-sizing: border-box;
    align-items: center;
    min-width: 0;
    min-height: 44px;
    background: #c0c0c0;
    box-shadow: inset -1px -1px #808080, inset 1px 1px #ffffff;
    line-height: 1.25;
    touch-action: manipulation;
  }

  .player-label,
  .window-label {
    box-sizing: border-box;
    flex: 1;
    width: 100%;
    min-width: 0;
    min-height: 44px;
    margin-left: 0 !important;
    padding: 7px 8px 7px 28px;
    cursor: pointer;
    touch-action: manipulation;
  }

  .player-option > input[type="checkbox"] + .player-label::before,
  .window-option > input[type="checkbox"] + .window-label::before {
    left: 8px;
  }

  .player-option > input[type="checkbox"]:checked + .player-label::after,
  .window-option > input[type="checkbox"]:checked + .window-label::after {
    left: 11px;
  }

  .player-name,
  .window-name {
    min-width: 0;
    overflow-wrap: anywhere;
  }

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

  .player-actions > button,
  .window-actions > button {
    width: 100%;
    min-height: 44px;
    touch-action: manipulation;
  }

  .time-period-control {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    min-height: 44px;
    margin-left: 0;
  }

  .time-period-control select {
    width: 100%;
    min-height: 44px;
    font-size: 16px;
  }

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

  .window-actions button + button {
    margin-left: 0 !important;
  }

  .overview-grid,
  .sailing-player-grid,
  .sailing-explorer-controls {
    grid-template-columns: 1fr;
  }

  .overview-card-header {
    align-items: flex-start;
  }

  .sailing-intro {
    grid-template-columns: 1fr;
  }

  .sailing-intro a {
    display: flex;
    align-items: center;
    min-height: 44px;
  }

  .sailing-explorer-controls select,
  .sailing-chart-group > summary,
  .sailing-sea-group > summary {
    min-height: 44px;
    font-size: 16px;
    touch-action: manipulation;
  }

  .sailing-sea-body > a {
    display: flex;
    align-items: center;
    min-height: 44px;
    touch-action: manipulation;
  }

  .sailing-task {
    padding: 10px 4px;
  }

  .chart-toolbar button,
  .skill-control select {
    min-height: 44px;
    touch-action: manipulation;
  }

  .skill-control {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
  }

  .skill-control select {
    width: 100%;
    margin-left: 0 !important;
    padding: 5px;
    font-size: 16px;
  }

  .chart-frame {
    width: 100%;
    height: 280px;
    max-height: none;
  }

  .chart-frame canvas {
    width: 100% !important;
    height: 100% !important;
  }

  .sunken-panel {
    width: 100%;
    max-width: 100%;
    height: min(62svh, 460px) !important;
    min-height: 320px;
    overflow: auto !important;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  table.interactive {
    width: max-content !important;
    min-width: 100%;
    font-size: 12px;
  }

  table.interactive th,
  table.interactive td {
    min-width: 68px;
    height: 36px;
    padding: 6px 8px;
    white-space: nowrap;
  }

  .quest-comparison-table th:first-child,
  .quest-comparison-table td:first-child,
  .level-comparison-table th:first-child,
  .level-comparison-table td:first-child,
  .achievement-diaries-table th:first-child,
  .achievement-diaries-table td:first-child:not([colspan]),
  .music-tracks-table th:first-child,
  .music-tracks-table td:first-child,
  .activities-comparison-table th:first-child,
  .activities-comparison-table td:first-child,
  #achievements-table-container table th:first-child,
  #achievements-table-container table td:first-child,
  .collection-log-table th:nth-child(2),
  .collection-log-table td:nth-child(2),
  .combat-achievements-table th:nth-child(3),
  .combat-achievements-table td:nth-child(3) {
    position: sticky;
    left: 0;
    z-index: 6;
    max-width: 170px;
    background-color: var(--mobile-sticky-background, #ffffff);
    box-shadow: 2px 0 #808080;
    white-space: normal;
  }

  .quest-comparison-table thead th:first-child,
  .level-comparison-table thead th:first-child,
  .achievement-diaries-table thead th:first-child,
  .music-tracks-table thead th:first-child,
  .activities-comparison-table thead th:first-child,
  #achievements-table-container table thead th:first-child,
  .collection-log-table thead th:nth-child(2),
  .combat-achievements-table thead th:nth-child(3) {
    z-index: 12;
    background-color: #c0c0c0;
  }

  .quest-comparison-table th:first-child,
  .quest-comparison-table td:first-child,
  .level-comparison-table th:first-child,
  .level-comparison-table td:first-child,
  .music-tracks-table th:first-child,
  .music-tracks-table td:first-child,
  .activities-comparison-table th:first-child,
  .activities-comparison-table td:first-child {
    min-width: 138px;
  }

  .collection-log-table th:nth-child(2),
  .collection-log-table td:nth-child(2) {
    min-width: 150px;
  }

  .combat-achievements-table th:nth-child(3),
  .combat-achievements-table td:nth-child(3) {
    min-width: 180px;
  }

  .achievements-controls {
    flex-direction: column;
    align-items: stretch !important;
  }

  .achievements-controls button {
    min-height: 44px;
  }
}

@media (max-width: 360px) {
  .window-options {
    grid-template-columns: 1fr;
  }

  .chart-frame {
    height: 250px;
  }
}

@media (pointer: coarse) {
  button,
  label,
  select,
  a {
    -webkit-tap-highlight-color: rgba(0, 0, 128, 0.18);
  }

  .title-bar {
    cursor: default;
  }
}

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