:root {
    color-scheme: light;
    --bg: #f6f8fb;
    --surface: #ffffff;
    --surface-2: #f9fbfd;
    --text: #111827;
    --muted: #6b7280;
    --muted-2: #4b5563;
    --border: #e5eaf1;
    --border-2: #d8e0eb;
    --accent: #2563eb;
    --accent-2: #06b6d4;
    --accent-soft: #e8f0ff;
    --green: #059669;
    --green-soft: #dff8ec;
    --amber: #d97706;
    --amber-soft: #fff3d6;
    --red: #dc2626;
    --red-soft: #ffe4e4;
    --blue: #2563eb;
    --blue-soft: #e5efff;
    --purple: #7c3aed;
    --purple-soft: #f0e9ff;
    --shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    --sidebar: #ffffff;
    --sidebar-text: #111827;
    --sidebar-muted: #6b7280;
    --sidebar-active: #eff6ff;
}

html[data-theme="dark"] {
    color-scheme: dark;
    --bg: #0b1020;
    --surface: #111827;
    --surface-2: #151e2e;
    --text: #f3f6fb;
    --muted: #9ca3af;
    --muted-2: #cbd5e1;
    --border: #253047;
    --border-2: #334155;
    --accent: #60a5fa;
    --accent-2: #22d3ee;
    --accent-soft: rgba(96, 165, 250, 0.14);
    --green: #34d399;
    --green-soft: rgba(52, 211, 153, 0.14);
    --amber: #fbbf24;
    --amber-soft: rgba(251, 191, 36, 0.15);
    --red: #f87171;
    --red-soft: rgba(248, 113, 113, 0.14);
    --blue: #93c5fd;
    --blue-soft: rgba(147, 197, 253, 0.14);
    --purple: #c4b5fd;
    --purple-soft: rgba(196, 181, 253, 0.14);
    --shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
    --sidebar: #0f172a;
    --sidebar-text: #f8fafc;
    --sidebar-muted: #94a3b8;
    --sidebar-active: rgba(96, 165, 250, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    background: var(--bg);
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 16% 0%, rgba(37, 99, 235, 0.10), transparent 28rem),
        radial-gradient(circle at 90% 10%, rgba(6, 182, 212, 0.08), transparent 26rem),
        var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    display: grid;
    grid-template-columns: 248px minmax(0, 1fr);
    letter-spacing: 0;
}

body.auth-layout {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.12), transparent 42%),
        linear-gradient(315deg, rgba(6, 182, 212, 0.14), transparent 42%),
        var(--bg);
}

body.sidebar-collapsed {
    grid-template-columns: 74px minmax(0, 1fr);
}

a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 650;
}

.material-symbols-rounded {
    font-family: "Material Symbols Rounded";
    font-size: 19px;
    line-height: 1;
    display: inline-block;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
}

.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    background: color-mix(in srgb, var(--sidebar) 94%, transparent);
    color: var(--sidebar-text);
    padding: 14px 10px;
    border-right: 1px solid var(--border);
    backdrop-filter: blur(18px);
}

body.sidebar-collapsed .sidebar {
    padding-inline: 8px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 6px 14px;
    margin-bottom: 10px;
}

.brand-copy {
    min-width: 0;
}

.rail-toggle {
    margin-left: auto;
    width: 30px;
    height: 30px;
    min-height: 30px;
    padding: 0;
    border-radius: 10px;
    box-shadow: none;
    background: var(--surface-2);
    color: var(--muted-2);
    border: 1px solid var(--border);
}

.rail-toggle:hover {
    background: var(--accent-soft);
    color: var(--accent);
}

body.sidebar-collapsed .brand {
    justify-content: center;
    padding-inline: 0;
}

body.sidebar-collapsed .brand-copy,
body.sidebar-collapsed .nav-label {
    display: none;
}

body.sidebar-collapsed .rail-toggle {
    position: absolute;
    left: 42px;
    top: 16px;
    width: 24px;
    height: 24px;
    min-height: 24px;
}

body.sidebar-collapsed nav a {
    justify-content: center;
    padding-inline: 0;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    font-size: 15px;
    font-weight: 850;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.20);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 15px;
}

.brand small {
    color: var(--sidebar-muted);
    font-size: 11px;
    margin-top: 1px;
}

nav {
    display: grid;
    gap: 2px;
}

nav a {
    color: var(--sidebar-muted);
    min-height: 36px;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 700;
}

nav a.active,
nav a:hover {
    background: var(--sidebar-active);
    color: var(--sidebar-text);
}

.main {
    min-width: 0;
    padding: 18px;
}

.auth-main {
    width: min(420px, calc(100vw - 32px));
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.page-kicker {
    color: var(--muted);
    font-size: 12px;
    font-weight: 760;
    margin-bottom: 3px;
}

h1,
h2 {
    margin: 0;
}

h1 {
    font-size: 24px;
    line-height: 1.15;
}

h2 {
    font-size: 16px;
    line-height: 1.25;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-button {
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    display: inline-grid;
    place-items: center;
    box-shadow: none;
}

.icon-button:hover {
    background: var(--surface-2);
    color: var(--text);
}

.user {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
}

.user span {
    color: var(--text);
    font-weight: 760;
}

.flash {
    background: var(--blue-soft);
    color: var(--blue);
    border: 1px solid color-mix(in srgb, var(--blue) 22%, transparent);
    padding: 9px 11px;
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 700;
}

.command-strip {
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--surface) 90%, var(--blue-soft)), color-mix(in srgb, var(--surface) 92%, var(--purple-soft))),
        var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.command-strip p,
.panel-header p,
.metric em {
    color: var(--muted);
}

.command-strip p {
    margin: 0 0 4px;
    font-size: 12px;
    font-weight: 820;
}

.command-strip h2 {
    font-size: 18px;
}

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

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

.metric,
.panel,
.auth-card {
    background: color-mix(in srgb, var(--surface) 96%, transparent);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.metric {
    padding: 13px;
    color: var(--text);
    min-height: 96px;
    display: grid;
    align-content: start;
    position: relative;
    overflow: hidden;
}

.metric:nth-child(1) {
    --accent: #2563eb;
    --accent-2: #06b6d4;
}

.metric:nth-child(2) {
    --accent: #059669;
    --accent-2: #22c55e;
}

.metric:nth-child(3) {
    --accent: #f97316;
    --accent-2: #eab308;
}

.metric:nth-child(4) {
    --accent: #7c3aed;
    --accent-2: #ec4899;
}

.metric::after {
    content: "";
    position: absolute;
    inset: auto 12px 10px auto;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    opacity: 0.13;
}

.metric span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 780;
    margin-bottom: 8px;
}

.metric strong {
    font-size: 28px;
    line-height: 1;
}

.metric em {
    font-style: normal;
    font-size: 12px;
    margin-top: 8px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.82fr);
    gap: 12px;
    align-items: start;
}

.panel {
    padding: 13px;
    margin-bottom: 12px;
    overflow-x: auto;
}

.panel-large {
    grid-row: span 3;
}

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

.panel-header p {
    margin: 3px 0 0;
    font-size: 12px;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

th,
td {
    text-align: left;
    padding: 9px 8px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

th {
    color: var(--muted);
    font-weight: 820;
    font-size: 10px;
    text-transform: uppercase;
}

tbody tr:hover {
    background: color-mix(in srgb, var(--accent-soft) 52%, transparent);
}

.actions {
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-end;
}

.button,
button {
    border: 0;
    background: var(--accent);
    color: #fff;
    border-radius: 10px;
    min-height: 34px;
    padding: 8px 11px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px color-mix(in srgb, var(--accent) 18%, transparent);
}

button:hover,
.button:hover {
    background: color-mix(in srgb, var(--accent) 86%, #000);
    color: #fff;
}

.button.secondary {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: none;
}

.button.secondary:hover {
    background: var(--surface-2);
}

.form-grid {
    display: grid;
    gap: 10px;
    max-width: 780px;
}

label {
    display: grid;
    gap: 5px;
    color: var(--muted-2);
    font-size: 12px;
    font-weight: 760;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 10px;
    font: inherit;
    font-size: 13px;
    color: var(--text);
    background: var(--surface);
    outline: none;
}

input:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.auth-card {
    width: 100%;
    max-width: 420px;
    padding: 22px;
    display: grid;
    gap: 12px;
}

.auth-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.auth-card-header h1 {
    font-size: 20px;
}

.auth-card-header p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.auth-flash {
    margin-bottom: 12px;
}

.message {
    border: 1px solid var(--border);
    background: var(--surface-2);
    border-radius: 12px;
    padding: 11px;
    margin-bottom: 9px;
}

.message.hub {
    border-color: color-mix(in srgb, var(--accent) 30%, var(--border));
    background: var(--accent-soft);
}

.reply {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.status-badge {
    display: inline-flex;
    min-height: 21px;
    align-items: center;
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 820;
    color: var(--muted-2);
    background: var(--surface-2);
    border: 1px solid var(--border);
    text-transform: capitalize;
    white-space: nowrap;
}

.status-active,
.status-online,
.status-won,
.status-shipped {
    color: var(--green);
    background: var(--green-soft);
    border-color: color-mix(in srgb, var(--green) 24%, transparent);
}

.status-open,
.status-new,
.status-planned,
.status-in-progress,
.status-qualified,
.status-proposal {
    color: var(--blue);
    background: var(--blue-soft);
    border-color: color-mix(in srgb, var(--blue) 24%, transparent);
}

.status-high,
.status-urgent,
.status-blocked,
.status-expired,
.status-revoked,
.status-suspended {
    color: var(--red);
    background: var(--red-soft);
    border-color: color-mix(in srgb, var(--red) 24%, transparent);
}

.status-normal,
.status-draft,
.status-idea {
    color: var(--amber);
    background: var(--amber-soft);
    border-color: color-mix(in srgb, var(--amber) 24%, transparent);
}

.stack-list {
    display: grid;
    gap: 7px;
}

.stack-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    border-radius: 12px;
    padding: 9px;
}

.stack-item strong,
.stack-item small {
    display: block;
}

.roadmap-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
    box-shadow: var(--shadow);
}

.roadmap-toolbar p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.mindmap {
    position: relative;
    min-height: 620px;
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    grid-template-rows: repeat(3, auto);
    gap: 16px;
    align-items: center;
}

.mindmap::before {
    content: "";
    position: absolute;
    inset: 9% 10%;
    border: 1px dashed color-mix(in srgb, var(--accent) 30%, var(--border));
    border-radius: 28px;
    pointer-events: none;
}

.mindmap-core,
.mind-branch {
    position: relative;
    z-index: 1;
    background: color-mix(in srgb, var(--surface) 94%, transparent);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.mindmap-core {
    grid-column: 2;
    grid-row: 2;
    min-height: 180px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 20px;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(6, 182, 212, 0.12)),
        var(--surface);
}

.mindmap-core .material-symbols-rounded {
    font-size: 34px;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.mindmap-core strong {
    display: block;
    font-size: 24px;
    margin-top: 10px;
}

.mindmap-core small {
    color: var(--muted);
    font-weight: 700;
}

.mind-branch {
    padding: 12px;
}

.mind-branch:nth-of-type(2) {
    grid-column: 1;
    grid-row: 1;
}

.mind-branch:nth-of-type(3) {
    grid-column: 3;
    grid-row: 1;
}

.mind-branch:nth-of-type(4) {
    grid-column: 1;
    grid-row: 3;
}

.mind-branch:nth-of-type(5) {
    grid-column: 3;
    grid-row: 3;
}

.mind-branch:nth-of-type(6) {
    grid-column: 2;
    grid-row: 3;
}

.branch-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 850;
}

.branch-items {
    display: grid;
    gap: 8px;
}

.mind-node {
    display: block;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 10px;
    background: var(--surface-2);
    color: var(--text);
}

.mind-node:hover {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
}

.mind-node strong,
.mind-node small {
    display: block;
}

.mind-node strong {
    font-size: 13px;
}

.mind-node small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
}

.mind-node.empty {
    color: var(--muted);
    border-style: dashed;
}

.mind-purple {
    border-top: 4px solid var(--purple);
}

.mind-blue {
    border-top: 4px solid var(--blue);
}

.mind-green {
    border-top: 4px solid var(--green);
}

.mind-red {
    border-top: 4px solid var(--red);
}

.mind-amber {
    border-top: 4px solid var(--amber);
}

.app-layout::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 72%);
}

.app-layout .sidebar,
.app-layout .main {
    position: relative;
    z-index: 1;
}

.topbar {
    background: color-mix(in srgb, var(--surface) 78%, transparent);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 12px 14px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.command-strip {
    position: relative;
    overflow: hidden;
    border-color: color-mix(in srgb, var(--accent) 22%, var(--border));
    background:
        linear-gradient(120deg, rgba(37, 99, 235, 0.16), transparent 36%),
        linear-gradient(300deg, rgba(6, 182, 212, 0.16), transparent 38%),
        var(--surface);
}

.command-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: translateX(-65%);
    opacity: 0.5;
}

.command-strip > * {
    position: relative;
    z-index: 1;
}

.metric,
.panel,
.auth-card,
.roadmap-toolbar,
.mindmap-core,
.mind-branch {
    backdrop-filter: blur(18px);
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.metric:hover,
.panel:hover,
.mind-branch:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--accent) 26%, var(--border));
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.11);
}

.button,
button {
    position: relative;
    overflow: hidden;
    gap: 7px;
    min-height: 38px;
    padding: 9px 14px;
    border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent);
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--accent) 96%, #fff), color-mix(in srgb, var(--accent-2) 88%, var(--accent)));
    box-shadow:
        0 12px 24px color-mix(in srgb, var(--accent) 22%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transition: transform 150ms ease, box-shadow 150ms ease, filter 150ms ease;
}

.button::after,
button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
    transform: translateX(-120%);
    transition: transform 420ms ease;
}

.button:hover,
button:hover {
    transform: translateY(-1px);
    filter: saturate(1.08);
    box-shadow:
        0 16px 32px color-mix(in srgb, var(--accent) 28%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.button:hover::after,
button:hover::after {
    transform: translateX(120%);
}

.button.secondary {
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--surface) 92%, var(--accent-soft)), var(--surface));
    color: var(--text);
    border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--border));
    box-shadow:
        0 10px 24px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.icon-button,
.rail-toggle {
    width: 34px;
    height: 34px;
    min-height: 34px;
    padding: 0;
    border-radius: 11px;
    box-shadow: none;
    background: var(--surface);
    color: var(--text);
    transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.icon-button:hover,
.rail-toggle:hover {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--accent) 32%, var(--border));
}

.icon-button::after,
.rail-toggle::after {
    display: none;
}

.brand-mark {
    box-shadow:
        0 10px 22px color-mix(in srgb, var(--accent) 28%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.stack-item strong {
    font-size: 13px;
}

.stack-item small {
    color: var(--muted);
    font-size: 11px;
    margin-top: 2px;
}

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

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

    .panel-large {
        grid-row: auto;
    }
}

@media (max-width: 860px) {
    body {
        grid-template-columns: 1fr;
    }

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

    .sidebar {
        position: static;
        height: auto;
    }

    body.sidebar-collapsed .sidebar {
        padding: 14px 10px;
    }

    body.sidebar-collapsed .brand {
        justify-content: flex-start;
        padding: 4px 6px 14px;
    }

    body.sidebar-collapsed .brand-copy,
    body.sidebar-collapsed .nav-label {
        display: block;
    }

    body.sidebar-collapsed .rail-toggle {
        position: static;
        width: 30px;
        height: 30px;
        min-height: 30px;
        margin-left: auto;
    }

    body.sidebar-collapsed nav a {
        justify-content: flex-start;
        padding: 8px 10px;
    }

    nav {
        grid-template-columns: repeat(auto-fit, minmax(126px, 1fr));
    }

    .main {
        padding: 14px;
    }

    .topbar,
    .command-strip,
    .roadmap-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

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

@media (max-width: 900px) {
    .mindmap {
        display: grid;
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .mindmap::before {
        display: none;
    }

    .mindmap-core,
    .mind-branch,
    .mind-branch:nth-of-type(n) {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 560px) {
    .topbar-actions,
    .hero-actions,
    .panel-header {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .user,
    .icon-button,
    .button,
    button {
        width: 100%;
    }

table {
    min-width: 680px;
}
}

.ops-code-block {
    margin: 0;
    padding: 14px;
    overflow: auto;
    white-space: pre-wrap;
    word-break: break-word;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface-2);
    color: var(--text);
    font: 13px/1.5 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
