:root {
  --bg: #0f172a;
  --bg-accent: #111827;
  --panel: rgba(15, 23, 42, 0.78);
  --panel-strong: rgba(17, 24, 39, 0.92);
  --line: rgba(148, 163, 184, 0.2);
  --text: #e5eef8;
  --muted: #9fb1c8;
  --warm: #f59e0b;
  --green: #22c55e;
  --red: #ef4444;
  --blue: #38bdf8;
  --shadow: 0 30px 60px rgba(2, 6, 23, 0.35);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --font-main: "Avenir Next", "SF Pro Display", "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
  --font-cjk: "PingFang SC", "Hiragino Sans GB", "Noto Sans CJK SC", "Microsoft YaHei", "Heiti SC", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-main);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.18), transparent 22%),
    linear-gradient(160deg, #0b1120 0%, #10192e 45%, #132238 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}

body[data-theme="light"] {
  --bg: #f3f6fb;
  --bg-accent: #eff4fb;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-strong: rgba(255, 255, 255, 0.95);
  --line: rgba(15, 23, 42, 0.1);
  --text: #172033;
  --muted: #64748b;
  --shadow: 0 22px 40px rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.16), transparent 22%),
    linear-gradient(160deg, #f6f9ff 0%, #eef4fb 45%, #e8f0f8 100%);
}

body.has-quick-panel {
  overflow: hidden;
}

body.is-minimal-dashboard .dashboard-shell {
  width: min(100vw - 8px, 1980px);
  padding-top: 4px;
  padding-bottom: 8px;
}

body.is-minimal-dashboard .dashboard-main {
  gap: 10px;
}

body.is-minimal-dashboard .home-layout {
  gap: 12px;
}

body.is-minimal-dashboard .room-section {
  padding: 12px;
  border-radius: 20px;
}

body.is-minimal-dashboard .device-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

body.is-minimal-dashboard .floor-nav {
  top: 6px;
  padding: 8px;
}

a {
  color: inherit;
}

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

.app-shell {
  width: min(1400px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.dashboard-shell {
  width: min(100vw - 8px, 2048px);
  min-height: 100vh;
  padding: 4px 0 8px;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  padding: 8px 12px;
  margin-bottom: 10px;
  background: rgba(10, 15, 27, 0.58);
  border: 1px solid var(--line);
  border-radius: 22px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

body[data-theme="light"] .dashboard-header {
  background: rgba(255, 255, 255, 0.86);
}

.dashboard-header.is-toolbar-only {
  position: fixed;
  top: 8px;
  right: 8px;
  z-index: 35;
  justify-content: flex-end;
  padding: 6px;
  margin-bottom: 0;
  width: auto;
  border-radius: 18px;
  background: rgba(10, 15, 27, 0.52);
}

.dashboard-header.is-toolbar-only .dashboard-actions {
  width: auto;
  justify-content: flex-end;
}

.dashboard-brand {
  display: grid;
  gap: 4px;
  margin-right: auto;
}

.dashboard-brand .eyebrow {
  margin-bottom: 0;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}

.dashboard-brand h1 {
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  line-height: 1.05;
}

.dashboard-copy {
  margin: 0;
  max-width: 520px;
  font-size: 0.78rem;
  color: var(--muted);
}

.dashboard-actions {
  gap: 10px;
}

.dashboard-main {
  display: grid;
  grid-template-columns: clamp(232px, 19vw, 320px) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: calc(100vh - var(--dashboard-header-offset, 0px) - 24px);
}

.dashboard-overview {
  display: grid;
  gap: 12px;
  position: sticky;
  top: 8px;
  align-content: start;
  padding-right: 2px;
}

.overview-card {
  padding: 18px;
  border-radius: 26px;
  background: var(--panel);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-width: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.overview-clock-card {
  min-height: 210px;
  display: grid;
  align-content: space-between;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.22), transparent 34%),
    linear-gradient(160deg, rgba(27, 48, 121, 0.95), rgba(25, 41, 86, 0.9));
}

.overview-eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.72);
}

.overview-clock-wrap {
  display: grid;
  gap: 8px;
}

.clock-time {
  font-size: clamp(2.8rem, 7vw, 4.4rem);
  line-height: 0.92;
  font-weight: 700;
}

.clock-date {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  text-transform: capitalize;
}

.dashboard-meta-bar {
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 0;
}

.overview-stat-card {
  min-height: 100px;
}

.overview-status-card {
  display: grid;
  gap: 10px;
}

.overview-temperature-card {
  display: grid;
  gap: 12px;
  background:
    radial-gradient(circle at top left, rgba(125, 211, 252, 0.2), transparent 34%),
    linear-gradient(160deg, rgba(12, 74, 110, 0.72), rgba(15, 23, 42, 0.88));
}

.overview-temperature-wrap {
  display: grid;
  gap: 6px;
}

.overview-temperature-value {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.95;
  font-weight: 800;
}

.overview-temperature-helper {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.overview-temperature-card[hidden] {
  display: none;
}

.overview-actions-card {
  display: grid;
  gap: 12px;
}

.overview-status-title {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-workspace {
  min-width: 0;
  display: grid;
  gap: 12px;
  align-content: start;
  grid-auto-rows: min-content;
}

.dashboard-filters {
  display: grid;
  gap: 10px;
  position: sticky;
  top: 8px;
  z-index: 8;
}

.dashboard-filters:empty {
  display: none;
}

.dashboard-favorites {
  display: none;
}

.favorites-panel {
  padding: 14px;
  border-radius: 24px;
  background: rgba(8, 13, 24, 0.62);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.quick-actions-panel {
  display: grid;
  gap: 12px;
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 12px;
}

.quick-action-card {
  min-height: 124px;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 44%),
    rgba(255, 255, 255, 0.05);
  color: var(--text);
  text-align: left;
  display: grid;
  align-content: space-between;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.quick-action-card:hover,
.quick-action-card:focus {
  transform: translateY(-2px);
  border-color: rgba(245, 158, 11, 0.28);
  box-shadow: 0 16px 26px rgba(2, 6, 23, 0.2);
  outline: none;
}

.quick-action-card strong {
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.quick-action-card span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.quick-action-card:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.quick-action-off {
  background: linear-gradient(160deg, rgba(239, 68, 68, 0.18), rgba(255, 255, 255, 0.04));
}

.quick-action-on {
  background: linear-gradient(160deg, rgba(34, 197, 94, 0.18), rgba(255, 255, 255, 0.04));
}

.quick-action-refresh {
  background: linear-gradient(160deg, rgba(56, 189, 248, 0.16), rgba(255, 255, 255, 0.04));
}

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.favorite-tile {
  display: grid;
  gap: 10px;
  min-height: 160px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  text-align: left;
}

.favorite-tile.is-active {
  background: linear-gradient(160deg, rgba(245, 158, 11, 0.18), rgba(56, 189, 248, 0.08));
}

.favorite-tile-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.favorite-tile-icon .device-icon-frame {
  min-height: 74px;
  width: 74px;
  border-radius: 20px;
}

.favorite-tile-copy {
  display: grid;
  gap: 4px;
}

.favorite-tile-copy strong {
  font-size: 0.96rem;
}

.favorite-tile-copy span {
  color: var(--muted);
  font-size: 0.76rem;
}

.dashboard-meta-bar .meta-card strong {
  margin-top: 6px;
  font-size: 1.9rem;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  margin-bottom: 22px;
  background: linear-gradient(140deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: var(--warm);
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 0.98;
}

.hero-copy {
  margin: 14px 0 0;
  max-width: 620px;
  font-size: 1.05rem;
  color: var(--muted);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.language-switcher {
  display: inline-flex;
  padding: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.language-button,
.refresh-button,
.toggle-button,
.ghost-button,
.primary-button,
.danger-button,
.secondary-button,
.tab-button,
.icon-choice,
.source-choice {
  border: 0;
  cursor: pointer;
}

.language-button {
  padding: 10px 18px;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
}

.language-button.is-active {
  background: var(--text);
  color: var(--bg-accent);
}

.refresh-button,
.primary-button {
  padding: 14px 22px;
  color: var(--bg-accent);
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.22);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ghost-button,
.secondary-button,
.danger-button {
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ghost-button,
.secondary-button {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.admin-shortcut-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  padding: 0;
  justify-content: center;
  font-size: 1.1rem;
  border-radius: 50%;
}

.danger-button {
  background: rgba(239, 68, 68, 0.15);
  color: #fecaca;
}

.meta-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.meta-card,
.status-pill,
.device-card,
.panel-card,
.admin-login-card,
.list-card {
  background: var(--panel);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.meta-card,
.status-pill {
  padding: 18px 22px;
  border-radius: var(--radius-md);
}

.meta-card span,
.status-pill {
  color: var(--muted);
}

.meta-card strong {
  display: block;
  margin-top: 8px;
  font-size: 2rem;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  align-items: start;
  align-content: start;
  gap: 16px;
  min-width: 0;
  grid-auto-flow: dense;
}

.floor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 10;
  padding: 10px;
  background: rgba(8, 13, 24, 0.72);
  border: 1px solid var(--line);
  border-radius: 22px;
  backdrop-filter: blur(14px);
}

body[data-theme="light"] .floor-nav {
  background: rgba(255, 255, 255, 0.84);
}

.room-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px;
  background: rgba(8, 13, 24, 0.62);
  border: 1px solid var(--line);
  border-radius: 22px;
  scrollbar-width: none;
}

.room-tabs::-webkit-scrollbar {
  display: none;
}

.room-tab {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-weight: 800;
}

.room-tab.is-active {
  color: var(--text);
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(245, 158, 11, 0.32);
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.12);
}

.room-tab.is-secondary,
.floor-chip.is-secondary {
  opacity: 0.82;
}

.floor-chip {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-weight: 700;
}

.floor-chip.is-active {
  background: rgba(245, 158, 11, 0.16);
  border-color: rgba(245, 158, 11, 0.35);
  color: var(--text);
}

.floor-section,
.room-section {
  display: grid;
  gap: 12px;
}

.floor-header,
.room-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.floor-header {
  padding: 2px 4px;
}

.floor-header .eyebrow,
.room-header .eyebrow {
  margin-bottom: 4px;
  font-size: 0.64rem;
}

.floor-header h2 {
  font-size: 1.1rem;
}

.room-section {
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 24px;
}

body[data-theme="light"] .room-section {
  background: rgba(255, 255, 255, 0.5);
}

.room-header h3 {
  font-size: 1rem;
}

.device-card {
  min-height: 320px;
  padding: 18px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 180ms ease, border-color 180ms ease;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    var(--panel);
}

@media (min-width: 1500px) {
  .dashboard-main {
    grid-template-columns: 296px minmax(0, 1fr);
  }

  .device-grid,
  .dashboard-workspace .device-grid {
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  }
}

@media (pointer: coarse) and (orientation: landscape) and (min-width: 900px) {
  .dashboard-shell {
    width: min(100vw - 4px, 2560px);
    padding-top: 2px;
    padding-bottom: 4px;
  }

  .dashboard-main {
    grid-template-columns: clamp(180px, 16vw, 230px) minmax(0, 1fr);
    gap: 10px;
  }

  .dashboard-overview {
    gap: 8px;
  }

  .overview-card {
    padding: 10px;
    border-radius: 18px;
  }

  .dashboard-actions,
  .top-actions {
    gap: 6px;
  }

  .language-button,
  .refresh-button,
  .ghost-button {
    padding: 9px 14px;
  }

  .admin-shortcut-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .room-tab,
  .floor-chip {
    padding: 8px 12px;
    font-size: 0.92rem;
  }

  .overview-clock-card {
    min-height: 190px;
  }

  .overview-clock-wrap {
    gap: 4px;
  }

  .clock-time {
    font-size: clamp(2.3rem, 4.8vw, 3.5rem);
  }

  .meta-card strong,
  .overview-temperature-value {
    font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  }

  .quick-actions-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .quick-action-card {
    min-height: 84px;
    padding: 12px;
    border-radius: 18px;
  }

  .device-grid,
  .dashboard-workspace .device-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 12px;
  }
}

.device-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 158, 11, 0.35);
}

.device-card.is-online.has-switch {
  border-color: rgba(34, 197, 94, 0.18);
}

.device-card.is-online.is-active-device {
  background:
    linear-gradient(180deg, rgba(245, 158, 11, 0.12), rgba(255, 255, 255, 0.03)),
    var(--panel);
}

.device-card.is-switch-tile {
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.09), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    var(--panel);
}

.device-card.is-switch-tile.is-active-device {
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(245, 158, 11, 0.08), rgba(255, 255, 255, 0.03)),
    var(--panel);
}

.device-card.is-primary-touch .device-icon-frame {
  transition: transform 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
}

.device-card.is-primary-touch .device-icon.is-touch-enabled {
  cursor: pointer;
}

.device-card.is-primary-touch .device-icon.is-touch-enabled:hover .device-icon-frame,
.device-card.is-primary-touch .device-icon.is-touch-enabled:focus .device-icon-frame {
  transform: scale(1.02);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 10px 22px rgba(245, 158, 11, 0.18);
}

.device-card.is-primary-touch .device-icon.is-touch-enabled:focus {
  outline: none;
}

.device-card.is-primary-touch .device-icon.is-touch-enabled.is-pressed .device-icon-frame {
  transform: scale(0.985);
}

.device-card-header {
  display: grid;
  gap: 8px;
  align-items: start;
}

.device-card-identity {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  min-width: 0;
}

.device-icon,
.icon-preview {
  width: 100%;
  height: auto;
}

.device-icon-frame {
  width: 100%;
  min-height: clamp(92px, 14vh, 150px);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  display: grid;
  place-items: center;
  position: relative;
}

.device-icon-frame.is-library {
  background: linear-gradient(160deg, rgba(56, 189, 248, 0.22), rgba(245, 158, 11, 0.18));
}

.device-icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

.is-cjk {
  font-family: var(--font-cjk);
  letter-spacing: 0;
}

.device-card.has-touch-panel .device-icon-frame,
.device-card.is-primary-touch .device-icon-frame {
  min-height: clamp(108px, 18vh, 180px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.device-card.is-switch-tile .device-icon-frame {
  min-height: clamp(118px, 19vh, 188px);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.07), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  padding: 8px;
}

.device-card.is-switch-tile .device-icon-image {
  padding: 2px;
  opacity: 0.9;
  transition: filter 140ms ease, opacity 140ms ease;
}

.device-card.is-switch-tile.is-active-device .device-icon-image {
  filter: saturate(1.08) contrast(1.04) brightness(1.02);
  opacity: 1;
}

.device-card.image-size-small .device-icon-frame {
  min-height: 88px;
}

.device-card.image-size-small.has-touch-panel .device-icon-frame,
.device-card.image-size-small.is-switch-tile .device-icon-frame {
  min-height: 118px;
}

.device-card.image-size-small .device-icon-image {
  padding: 10px;
}

.device-card.image-size-large .device-icon-frame {
  min-height: clamp(132px, 20vh, 190px);
}

.device-card.image-size-large.has-touch-panel .device-icon-frame,
.device-card.image-size-large.is-switch-tile .device-icon-frame {
  min-height: clamp(144px, 24vh, 220px);
}

.device-card.image-size-large .device-icon-image {
  padding: 10px;
}

.device-touch-zones {
  position: absolute;
  inset: 10px;
  display: grid;
  gap: 8px;
  pointer-events: none;
}

.device-touch-zones.zones-1 {
  grid-template-columns: 1fr;
}

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

.device-touch-zones.zones-3,
.device-touch-zones.zones-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.device-touch-zone {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 10px 8px 12px;
  background: linear-gradient(180deg, rgba(80, 91, 112, 0.22), rgba(17, 24, 39, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  color: var(--text);
  pointer-events: auto;
  backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -10px 22px rgba(2, 6, 23, 0.18),
    0 10px 22px rgba(2, 6, 23, 0.18);
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
}

.device-touch-zone::before {
  content: "";
  position: absolute;
  inset: 10px 8px 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(226, 232, 240, 0.08));
  opacity: 0.92;
  transition: background 140ms ease, opacity 140ms ease, box-shadow 140ms ease;
}

.device-touch-zone:hover,
.device-touch-zone:focus {
  background: linear-gradient(180deg, rgba(96, 110, 136, 0.26), rgba(17, 24, 39, 0.24));
  border-color: rgba(245, 158, 11, 0.28);
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.22);
  outline: none;
}

.device-touch-zone.is-on {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.28), rgba(56, 189, 248, 0.16));
  border-color: rgba(245, 158, 11, 0.28);
}

.device-touch-zone.is-on::before {
  background: linear-gradient(180deg, rgba(255, 252, 230, 0.98), rgba(255, 227, 160, 0.78));
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.14), 0 16px 26px rgba(245, 158, 11, 0.22);
}

.device-touch-zone.is-off::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(148, 163, 184, 0.12));
  opacity: 0.72;
}

.device-touch-zone.is-pressed {
  transform: scale(0.96);
}

.device-touch-zone-indicator {
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 36px;
  height: 6px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(71, 85, 105, 0.46);
}

.device-touch-zone.is-on .device-touch-zone-indicator {
  background: #38bdf8;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.52);
}

.device-touch-zone-label {
  position: relative;
  z-index: 1;
  max-width: 100%;
  padding: 2px 6px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(15, 23, 42, 0.64);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tile-feature-summary {
  display: grid;
  gap: 8px;
}

.tile-control-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tile-control-chip.is-on {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.14), rgba(56, 189, 248, 0.06));
  border-color: rgba(245, 158, 11, 0.2);
}

.tile-control-chip-label {
  font-weight: 800;
  font-size: 0.96rem;
}

.tile-control-chip-value {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.device-quick-panel[hidden] {
  display: none;
}

.device-quick-panel {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  align-items: stretch;
  justify-items: end;
}

.device-quick-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.46);
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 180ms ease;
}

.device-quick-sheet {
  position: relative;
  margin: 12px;
  width: min(720px, calc(100vw - 24px));
  height: calc(100vh - 24px);
  padding: 20px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(20, 28, 45, 0.98), rgba(10, 16, 28, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 80px rgba(2, 6, 23, 0.42);
  overflow: auto;
  transform: translateX(18px) scale(0.985);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.device-quick-panel.is-open .device-quick-backdrop {
  opacity: 1;
}

.device-quick-panel.is-open .device-quick-sheet {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.device-quick-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.device-quick-body {
  display: grid;
  gap: 16px;
}

.quick-panel-section {
  display: grid;
  gap: 12px;
}

.quick-panel-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.quick-panel-section-head .eyebrow {
  margin-bottom: 4px;
}

.quick-panel-section-head h3 {
  font-size: 1.05rem;
}

.quick-panel-close-button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  font-size: 0;
}

.quick-panel-close-button::before {
  content: "×";
  font-size: 1.4rem;
  line-height: 1;
}

.quick-panel-hero {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.quick-panel-icon .device-icon-frame {
  min-height: 300px;
  border-radius: 30px;
}

.quick-panel-side,
.quick-panel-controls,
.quick-panel-status-grid {
  display: grid;
  gap: 12px;
}

.quick-panel-side .badge {
  justify-self: start;
}

.quick-panel-controls {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.quick-panel-status-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.quick-status-card {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.quick-status-label {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  margin-bottom: 6px;
}

.quick-status-value {
  font-size: 1rem;
}

.device-card.is-holding,
.favorite-tile.is-holding {
  transform: scale(0.988);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.24), var(--shadow);
}

body[data-theme="light"] .device-touch-zone {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(226, 232, 240, 0.28));
}

body[data-theme="light"] .device-touch-zone-label {
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
}

body[data-theme="light"] .device-touch-zone.is-on::before {
  background: linear-gradient(180deg, rgba(255, 250, 215, 1), rgba(254, 215, 170, 0.84));
}

.device-icon-svg {
  width: 74px;
  height: 74px;
}

.device-icon-svg svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.device-icon-fallback {
  font-size: 1.15rem;
  font-weight: 800;
}

.device-room {
  margin: 0 0 4px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.device-name {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.08;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.device-subname {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.device-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
}

.badge {
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 0.68rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.badge-online.is-online {
  color: #052e16;
  background: rgba(34, 197, 94, 0.95);
}

.badge-online.is-offline {
  color: white;
  background: rgba(239, 68, 68, 0.9);
}

.badge-temperature {
  color: #082f49;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.95), rgba(186, 230, 253, 0.92));
  font-weight: 800;
}

.device-body {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.primary-control {
  display: grid;
  gap: 10px;
}

.primary-control.primary-control-ir {
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
}

.function-point-control {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.function-point-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.function-point-label {
  font-weight: 800;
}

.function-point-value {
  color: var(--muted);
  font-size: 0.84rem;
  text-align: right;
}

.enum-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.enum-option-button {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.enum-option-button.is-active {
  background: rgba(56, 189, 248, 0.18);
  border-color: rgba(56, 189, 248, 0.35);
}

.range-control {
  width: 100%;
  accent-color: var(--warm);
}

.string-command-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.compact-input {
  min-width: 0;
}

.compact-button {
  padding: 12px 16px;
}

.toggle-row,
.checkbox-row,
.user-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.switch-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease;
}

.switch-control.control-icon {
  min-height: 92px;
  padding: 14px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.switch-control.control-mixed {
  align-items: center;
}

.switch-control:hover,
.switch-control:focus {
  transform: translateY(-1px);
  border-color: rgba(56, 189, 248, 0.32);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.switch-control:active {
  transform: scale(0.988);
}

.ir-action-control {
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.08), rgba(255, 255, 255, 0.04));
}

.ir-action-control.control-icon {
  aspect-ratio: 1 / 1;
  min-height: 108px;
}

.switch-control.is-on {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.16), rgba(34, 197, 94, 0.1));
}

.switch-control:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.switch-meta {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.switch-label {
  font-weight: 800;
  font-size: 1.04rem;
}

.switch-helper {
  color: var(--muted);
  font-size: 0.82rem;
}

.control-leading-icon,
.control-icon-stack {
  display: inline-grid;
  align-items: center;
  justify-items: center;
}

.control-leading-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  flex: 0 0 auto;
}

.control-leading-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.control-icon-stack {
  width: 100%;
  gap: 10px;
}

.control-icon-stack .switch-label {
  font-size: 0.86rem;
  line-height: 1.15;
}

.switch-control.control-icon .switch-visual {
  margin-top: auto;
}

.switch-control.control-text .switch-track {
  width: 56px;
}

.switch-visual {
  padding: 0;
  background: transparent;
  border-radius: 999px;
}

.switch-track {
  position: relative;
  display: inline-flex;
  width: 62px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 180ms ease, border-color 180ms ease;
}

.switch-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease;
}

.switch-visual.is-on .switch-track {
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  border-color: rgba(245, 158, 11, 0.5);
}

.switch-visual.is-on .switch-thumb {
  transform: translateX(28px);
}

.switch-visual.is-off .switch-track {
  background: rgba(148, 163, 184, 0.18);
}

.toggle-meta {
  display: grid;
  gap: 4px;
}

.toggle-label {
  font-weight: 700;
}

.toggle-value,
.helper-text,
.field-help {
  font-size: 0.85rem;
  color: var(--muted);
}

.toggle-button {
  min-width: 110px;
  padding: 14px 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 999px;
}

.toggle-button.is-on {
  background: rgba(34, 197, 94, 0.95);
  color: #052e16;
}

.toggle-button.is-off {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.toggle-button:disabled,
.primary-button:disabled,
.secondary-button:disabled,
.danger-button:disabled {
  opacity: 0.5;
  cursor: wait;
}

.status-list,
.field-grid,
.device-editor-grid,
.icon-grid,
.users-grid {
  display: grid;
  gap: 8px;
}

.status-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

.status-item:last-child {
  border-bottom: 0;
}

.status-term {
  color: var(--muted);
}

.status-value {
  margin: 0;
}

.status-empty,
.empty-card {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

.dashboard-workspace .device-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.page-section {
  display: none;
}

.page-section.is-active {
  display: block;
}

.panel-card,
.list-card {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.section-copy {
  color: var(--muted);
  margin: 6px 0 0;
}

.form-label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

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

.form-input,
.form-select,
.form-textarea,
.search-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 15, 28, 0.7);
  color: var(--text);
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
}

.toolbar,
.inline-actions,
.section-tabs,
.source-switcher {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tab-button,
.source-choice {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.tab-button.is-active,
.source-choice.is-active {
  background: rgba(56, 189, 248, 0.18);
  color: var(--text);
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.two-column-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 18px;
}

.device-list {
  display: grid;
  gap: 10px;
  max-height: 70vh;
  overflow: auto;
}

.device-list-item {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.device-list-item.is-active {
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(56, 189, 248, 0.14);
}

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

.device-list-main {
  text-align: left;
  background: transparent;
  color: var(--text);
  border: 0;
  padding: 0;
  cursor: pointer;
}

.device-visibility-toggle {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  white-space: nowrap;
}

.device-visibility-toggle.is-visible {
  background: rgba(34, 197, 94, 0.18);
  border-color: rgba(34, 197, 94, 0.3);
}

.device-visibility-toggle.is-hidden {
  background: rgba(148, 163, 184, 0.14);
  border-color: rgba(148, 163, 184, 0.24);
  color: var(--muted);
}

.device-list-item small,
.muted-line {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.icon-grid {
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
}

.icon-choice {
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  display: grid;
  gap: 8px;
  text-align: left;
}

.icon-choice.is-active {
  border-color: rgba(56, 189, 248, 0.45);
  background: rgba(56, 189, 248, 0.14);
}

.icon-choice .icon-preview {
  width: 48px;
  height: 48px;
}

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

.ir-results-panel {
  margin-top: 14px;
}

.ir-command-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.ir-command-card {
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 12px;
}

.ir-command-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.ir-command-head strong,
.ir-command-head small {
  display: block;
}

.ir-command-head small {
  margin-top: 4px;
  color: var(--muted);
}

.ir-command-actions {
  justify-content: flex-start;
}

.checkbox-row label {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.78rem;
}

.admin-status {
  min-height: 48px;
  display: flex;
  align-items: center;
}

@media (max-width: 1024px) {
  .dashboard-main {
    grid-template-columns: clamp(210px, 26vw, 250px) minmax(0, 1fr);
    min-height: calc(100vh - 18px);
  }

  .dashboard-overview {
    position: sticky;
    top: 8px;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .overview-temperature-card {
    min-height: 100%;
  }

  .dashboard-meta-bar {
    grid-template-columns: 1fr;
  }

  .quick-actions-grid {
    grid-template-columns: 1fr;
  }

  .overview-clock-card,
  .overview-status-card {
    min-height: 100%;
  }

  .quick-panel-hero {
    grid-template-columns: 1fr;
  }

  .two-column-layout,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .device-list {
    max-height: none;
  }
}

@media (max-width: 860px) {
  .app-shell {
    width: min(100vw - 12px, 1400px);
    padding-top: 8px;
  }

  .dashboard-shell {
    width: min(100vw - 6px, 1480px);
    padding-top: 4px;
  }

  .dashboard-header {
    justify-content: flex-end;
    padding: 8px 10px;
    border-radius: 18px;
  }

  .dashboard-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .dashboard-main {
    grid-template-columns: clamp(150px, 31vw, 190px) minmax(0, 1fr);
    gap: 8px;
  }

  .quick-actions-grid {
    grid-template-columns: 1fr;
  }

  .top-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .string-command-row {
    grid-template-columns: 1fr;
  }

  .device-list-item-row {
    grid-template-columns: 1fr;
  }

  .clock-time {
    font-size: clamp(1.9rem, 6vw, 2.5rem);
  }

  .device-quick-sheet {
    inset: auto 8px 8px 8px;
    width: auto;
    max-height: calc(100vh - 16px);
    margin: 8px;
    height: calc(100vh - 16px);
  }
}

@media (max-width: 640px) {
  .dashboard-header {
    gap: 10px;
    padding: 8px;
  }

  .dashboard-actions,
  .top-actions {
    gap: 8px;
  }

  .dashboard-main {
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 8px;
  }

  .overview-card {
    padding: 12px;
    border-radius: 20px;
  }

  .overview-temperature-value {
    font-size: 1.7rem;
  }

  .quick-actions-grid {
    grid-template-columns: 1fr;
  }

  .quick-action-card {
    min-height: 104px;
    padding: 14px;
  }

  .favorites-grid,
  .device-grid,
  .dashboard-workspace .device-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 176px), 1fr));
  }

  .device-card {
    min-height: 0;
    padding: 15px;
    border-radius: 24px;
  }

  .floor-nav,
  .room-tabs {
    padding: 8px;
    border-radius: 18px;
  }

  .room-tab,
  .floor-chip {
    padding: 10px 14px;
  }

  .clock-date,
  .overview-status-title,
  .overview-temperature-helper,
  .meta-card span,
  .quick-action-card span {
    font-size: 0.72rem;
  }
}

@media (max-width: 480px) {
  .dashboard-main {
    grid-template-columns: 116px minmax(0, 1fr);
  }

  .clock-time {
    font-size: 1.7rem;
  }

  .overview-card {
    padding: 10px;
    border-radius: 18px;
  }

  .device-grid,
  .dashboard-workspace .device-grid {
    grid-template-columns: 1fr;
  }
}
