
/* ── CBS Brand Colors (matched from logo) ────────────────────────────────────
   Navy blue    #1B3A6B  – dominant dark triangles + text
   Steel blue   #4A6FA5  – mid triangles + accents
   Sky blue     #6B9EC4  – highlights / hover states
   Silver grey  #8C9BAB  – light triangles in logo
   Light grey   #C8D0D8  – borders, subtle dividers
   Off white    #F4F6F9  – page background
   ─────────────────────────────────────────────────────────────────────────── */

:root {
  --navy:          #1B3A6B;
  --navy-dark:     #122850;
  --navy-deeper:   #0D1E3D;
  --steel:         #4A6FA5;
  --steel-light:   #6B9EC4;
  --silver:        #8C9BAB;
  --silver-light:  #C8D0D8;
  --silver-pale:   #E8ECF0;

  /* Semantic aliases */
  --primary:       var(--navy);
  --primary-dark:  var(--navy-dark);
  --primary-deeper:var(--navy-deeper);
  --accent:        var(--steel);
  --accent-light:  var(--steel-light);
  --muted:         var(--silver);
  --border:        var(--silver-light);
  --border-pale:   var(--silver-pale);

  --bg:            #F4F6F9;
  --bg-subtle:     #EEF1F5;
  --surface:       #FFFFFF;
  --surface-2:     #F9FAFB;

  --text:          #0F1C30;
  --text-secondary:#3A4A5C;
  --text-muted:    #6B7A8D;

  --success:       #1A7A4A;
  --success-bg:    #E6F4ED;
  --danger:        #A31C1C;
  --danger-bg:     #FCEAEA;
  --warning:       #8B6914;
  --warning-bg:    #FEF3CD;

  --sidebar-w:     224px;
  --topbar-h:      54px;
  --radius:        6px;
  --radius-lg:     10px;
  --shadow-sm:     0 1px 3px rgba(27,58,107,.08), 0 1px 2px rgba(27,58,107,.06);
  --shadow:        0 4px 12px rgba(27,58,107,.10), 0 2px 4px rgba(27,58,107,.06);
  --shadow-lg:     0 8px 24px rgba(27,58,107,.14), 0 4px 8px rgba(27,58,107,.08);
}

/* ── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-size: 13px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ── Topbar ─────────────────────────────────────────────────────────────────── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--topbar-h); z-index: 50;
  background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy) 60%, var(--navy-dark) 100%);
  color: #fff;
  display: flex; align-items: center;
  padding: 0 20px; gap: 14px;
  box-shadow: 0 2px 12px rgba(13,30,61,.35);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.topbar-logo img { height: 34px; width: auto; filter: brightness(1.05); }
.topbar-divider { width: 1px; height: 24px; background: rgba(255,255,255,.18); }
.topbar-app { font-size: 12px; font-weight: 600; letter-spacing: .06em; color: rgba(255,255,255,.9); }
.topbar-spacer { flex: 1; }
.topbar-user { font-size: 12px; color: rgba(255,255,255,.85); font-weight: 500; }
.topbar-role {
  font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 10px;
  margin-left: 6px; text-transform: uppercase; letter-spacing: .07em;
  background: rgba(255,255,255,.15); color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.2);
}
.topbar-role.admin    { background: rgba(239,68,68,.4); border-color: rgba(239,68,68,.6); }
.topbar-role.manager  { background: rgba(59,130,246,.4); border-color: rgba(59,130,246,.6); }
.topbar-role.engineer { background: rgba(34,197,94,.3); border-color: rgba(34,197,94,.5); }
.topbar-role.admin { background: rgba(74,111,165,.5); border-color: rgba(107,158,196,.4); }
.topbar-btn {
  padding: 5px 14px; border-radius: var(--radius); font-size: 11px; font-weight: 600;
  cursor: pointer; border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.9);
  font-family: inherit; transition: background .15s, border-color .15s;
  letter-spacing: .03em;
}
.topbar-btn:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.4); }

/* ── Sidebar ─────────────────────────────────────────────────────────────────── */
.sidebar {
  position: fixed; top: var(--topbar-h); left: 0; bottom: 0;
  width: var(--sidebar-w);
  background: var(--navy-deeper);
  color: #fff;
  display: flex; flex-direction: column; overflow-y: auto; z-index: 40;
  border-right: 1px solid rgba(255,255,255,.05);
}
.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-track { background: transparent; }
.sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 2px; }

.sidebar-section {
  padding: 18px 14px 5px;
  font-size: 9px; font-weight: 700; letter-spacing: .14em;
  color: rgba(255,255,255,.3); text-transform: uppercase;
}
.sidebar-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 16px 9px 14px;
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,.65);
  cursor: pointer; text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
  border-left: 3px solid transparent;
  position: relative;
}
.sidebar-item:hover { background: rgba(255,255,255,.06); color: rgba(255,255,255,.92); }
.sidebar-item.active {
  background: rgba(74,111,165,.25);
  color: #fff;
  border-left-color: var(--steel-light);
}
.sidebar-item.active .icon { color: var(--steel-light); }
.sidebar-item .icon { font-size: 14px; width: 18px; text-align: center; opacity: .85; }
.sidebar-badge {
  margin-left: auto;
  background: rgba(74,111,165,.4); color: rgba(255,255,255,.7);
  font-size: 9px; font-weight: 700; padding: 1px 7px; border-radius: 8px;
  border: 1px solid rgba(107,158,196,.3);
}
.sidebar-footer {
  margin-top: auto; padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 10px; color: rgba(255,255,255,.25);
  text-align: center; line-height: 1.6;
}

/* ── Main layout ─────────────────────────────────────────────────────────────── */
.main {
  margin-left: var(--sidebar-w);
  margin-top: var(--topbar-h);
  padding: 28px 28px 56px;
  min-height: calc(100vh - var(--topbar-h));
}
.page-header { margin-bottom: 24px; }
.page-title { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 3px; letter-spacing: -.02em; }
.page-sub   { font-size: 12px; color: var(--text-muted); }

/* ── Cards ─────────────────────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.card-title {
  font-size: 12px; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 2px solid var(--border-pale);
  display: flex; align-items: center; gap: 8px;
}
.card-title::before {
  content: ''; display: inline-block;
  width: 3px; height: 14px;
  background: var(--steel);
  border-radius: 2px;
}

/* ── Module grid ─────────────────────────────────────────────────────────────── */
.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: 14px; margin-bottom: 28px;
}
.module-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 18px 18px;
  cursor: pointer; text-decoration: none; color: inherit;
  transition: transform .18s, box-shadow .18s, border-color .18s;
  display: flex; flex-direction: column; gap: 7px;
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.module-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--steel));
  opacity: 0; transition: opacity .18s;
}
.module-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--steel);
}
.module-card:hover::before { opacity: 1; }
.module-card.coming-soon {
  opacity: .55; cursor: not-allowed;
  background: var(--surface-2);
}
.module-card.coming-soon:hover {
  transform: none; box-shadow: var(--shadow-sm); border-color: var(--border);
}
.module-card.coming-soon::before { display: none; }
.module-icon { font-size: 24px; margin-bottom: 2px; }
.module-name { font-size: 13px; font-weight: 700; color: var(--navy); }
.module-desc { font-size: 11px; color: var(--text-muted); line-height: 1.5; flex: 1; }
.module-tag  { display: inline-block; font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 8px; margin-top: 4px; letter-spacing: .04em; }
.tag-active  { background: var(--success-bg); color: var(--success); }
.tag-soon    { background: var(--silver-pale); color: var(--silver); }

/* ── Stat strip ─────────────────────────────────────────────────────────────── */
.stat-strip { display: flex; gap: 14px; margin-bottom: 24px; flex-wrap: wrap; }
.stat-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px 22px;
  min-width: 130px; flex: 1;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--steel);
}
.stat-val { font-size: 26px; font-weight: 700; color: var(--navy); letter-spacing: -.02em; }
.stat-lbl { font-size: 11px; color: var(--text-muted); margin-top: 3px; font-weight: 500; }

/* ── Table ─────────────────────────────────────────────────────────────────── */
.tbl { width: 100%; border-collapse: collapse; font-size: 12px; }
.tbl th {
  background: var(--bg-subtle);
  padding: 9px 12px; text-align: left;
  font-size: 10px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--text-muted);
  border-bottom: 2px solid var(--border);
}
.tbl td { padding: 10px 12px; border-bottom: 1px solid var(--border-pale); vertical-align: middle; }
.tbl tr:last-child td { border-bottom: none; }
.tbl tr:hover td { background: #F0F4FA; }

/* ── Badges ─────────────────────────────────────────────────────────────────── */
.badge { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 9px; border-radius: 10px; letter-spacing: .03em; }
.badge-admin    { background: #FEE2E2; color: #B91C1C; border: 1px solid rgba(185,28,28,.2); }
.badge-manager  { background: #DBEAFE; color: #1D4ED8; border: 1px solid rgba(29,78,216,.2); }
.badge-engineer { background: #DCFCE7; color: #15803D; border: 1px solid rgba(21,128,61,.2); }
.badge-staff    { background: #E3EDF7; color: var(--steel); border: 1px solid rgba(74,111,165,.2); }
.badge-active { background: var(--success-bg); color: var(--success); }
.badge-off    { background: var(--silver-pale); color: var(--silver); }

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.btn {
  padding: 8px 20px; border: none; border-radius: var(--radius);
  font-size: 12px; font-weight: 600; cursor: pointer;
  font-family: inherit; letter-spacing: .03em;
  transition: background .15s, box-shadow .15s, transform .1s;
  display: inline-flex; align-items: center; gap: 5px;
}
.btn:active { transform: scale(.97); }
.btn-primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  color: #fff; box-shadow: 0 2px 6px rgba(27,58,107,.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  box-shadow: 0 4px 12px rgba(27,58,107,.35);
}
.btn-secondary {
  background: var(--surface); color: var(--navy);
  border: 1.5px solid var(--border); box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { background: var(--bg-subtle); border-color: var(--steel); color: var(--steel); }
.btn-danger {
  background: var(--surface); color: var(--danger);
  border: 1.5px solid rgba(163,28,28,.25);
}
.btn-danger:hover { background: var(--danger-bg); border-color: var(--danger); }
.btn-sm { padding: 4px 12px; font-size: 11px; }

/* ── Forms ─────────────────────────────────────────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: 10px; font-weight: 700; letter-spacing: .07em;
  color: var(--text-muted); text-transform: uppercase;
}
input, select {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 8px 10px; font-size: 12px; font-family: inherit;
  outline: none; background: var(--surface); color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus {
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(74,111,165,.12);
}

/* ── Modal ─────────────────────────────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(13,30,61,.5); z-index: 100;
  align-items: center; justify-content: center;
  backdrop-filter: blur(2px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--surface); border-radius: var(--radius-lg);
  padding: 28px 28px 24px; width: 420px; max-width: 94vw;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--steel);
}
.modal-title {
  font-size: 15px; font-weight: 700; color: var(--navy);
  margin-bottom: 18px;
}
.modal-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px; }

/* ── Toast ─────────────────────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--navy); color: #fff;
  padding: 10px 24px; border-radius: var(--radius);
  font-size: 12px; font-weight: 600; z-index: 200;
  transition: transform .3s ease; pointer-events: none;
  white-space: nowrap; box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--steel-light);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: var(--success); border-left-color: #6EE7A0; }
.toast.error   { background: var(--danger);  border-left-color: #F87171; }

/* ── Login page ─────────────────────────────────────────────────────────────── */
.login-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--navy-deeper) 0%, var(--navy) 50%, var(--steel) 100%);
  padding: 20px;
}
.login-box {
  background: var(--surface); border-radius: 14px;
  padding: 40px 36px 36px; width: 380px; max-width: 94vw;
  box-shadow: 0 20px 60px rgba(13,30,61,.45);
  border-top: 4px solid var(--steel);
}
.login-logo { display: flex; justify-content: center; margin-bottom: 24px; }
.login-logo img { height: 60px; width: auto; }
.login-title {
  font-size: 18px; font-weight: 700; color: var(--navy);
  text-align: center; margin-bottom: 4px; letter-spacing: -.02em;
}
.login-sub { font-size: 12px; color: var(--text-muted); text-align: center; margin-bottom: 28px; }
.login-divider {
  height: 1px; background: var(--border); margin-bottom: 22px;
}
.login-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.login-group label {
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  color: var(--text-secondary); text-transform: uppercase;
}
.login-group input {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 10px 12px; font-size: 13px; font-family: inherit; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.login-group input:focus {
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(74,111,165,.12);
}
.login-btn {
  width: 100%; padding: 11px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  color: #fff; border: none; border-radius: var(--radius);
  font-size: 13px; font-weight: 700; cursor: pointer;
  font-family: inherit; margin-top: 8px;
  transition: box-shadow .15s, transform .1s;
  box-shadow: 0 4px 12px rgba(27,58,107,.3);
  letter-spacing: .03em;
}
.login-btn:hover { box-shadow: 0 6px 18px rgba(27,58,107,.4); transform: translateY(-1px); }
.login-btn:active { transform: scale(.98); }
.login-btn:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.login-error {
  font-size: 12px; color: var(--danger); text-align: center;
  margin-top: 12px; min-height: 18px; font-weight: 500;
}
.login-footer {
  text-align: center; font-size: 11px; color: var(--text-muted);
  margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border);
}

/* ── History panel ─────────────────────────────────────────────────────────── */
.history-overlay { display:none;position:fixed;inset:0;background:rgba(13,30,61,.4);z-index:90; }
.history-overlay.open { display:block; }
.history-panel {
  position:fixed;right:0;top:0;bottom:0;width:340px;
  background:var(--surface);z-index:91;
  box-shadow:-6px 0 24px rgba(13,30,61,.18);
  display:flex;flex-direction:column;
  transform:translateX(100%);transition:transform .25s ease;
}
.history-panel.open { transform:translateX(0); }
.history-head {
  padding:14px 18px;
  background:linear-gradient(135deg, var(--navy-deeper), var(--navy));
  color:#fff;display:flex;justify-content:space-between;align-items:center;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.history-head h3 { font-size:13px;font-weight:700; }
.history-close { background:none;border:none;color:#fff;font-size:20px;cursor:pointer;opacity:.7; }
.history-close:hover { opacity:1; }
.history-search { padding:10px 14px;border-bottom:1px solid var(--border); background: var(--surface-2); }
.history-search input { width:100%;border:1.5px solid var(--border);border-radius:var(--radius);padding:7px 10px;font-size:12px;font-family:inherit;outline:none; }
.history-search input:focus { border-color:var(--steel);box-shadow:0 0 0 3px rgba(74,111,165,.1); }
.history-list { flex:1;overflow-y:auto; }
.history-item { padding:12px 16px;border-bottom:1px solid var(--border-pale);transition:background .1s; }
.history-item:hover { background:var(--bg-subtle); }
.history-item-title { font-size:12px;font-weight:700;color:var(--navy);margin-bottom:2px; }
.history-item-meta { font-size:10px;color:var(--text-muted);margin-bottom:6px; }
.hi-btn { padding:3px 10px;border-radius:4px;font-size:10px;font-weight:600;cursor:pointer;border:none;font-family:inherit; }
.hi-load { background:var(--navy);color:#fff; }
.hi-load:hover { background:var(--steel); }
.hi-delete { background:var(--danger-bg);color:var(--danger);margin-left:4px; }
.history-empty { padding:32px 16px;text-align:center;color:var(--text-muted);font-size:12px;line-height:1.7; }

/* ── Scope form sheet overrides ───────────────────────────────────────────── */
.sheet {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 32px 24px;
  box-shadow: var(--shadow-sm);
}
.scope-table th { background: var(--bg-subtle); }
.scope-table td[contenteditable="true"]:focus {
  background: #EEF4FF;
  box-shadow: inset 0 0 0 2px rgba(74,111,165,.2);
}
.field-input:focus { background: #F5F8FF; border-bottom-color: var(--steel); }
.sign-slash::after { color: var(--navy); }

/* ── Scope action bar ─────────────────────────────────────────────────────── */
.scope-actions { display:flex;gap:8px;margin-bottom:16px;flex-wrap:wrap;align-items:center; }
.record-badge {
  display:inline-block;
  background: linear-gradient(135deg, var(--navy), var(--steel));
  color:#fff;font-size:10px;font-weight:700;
  padding:3px 10px;border-radius:10px;
  box-shadow: 0 2px 6px rgba(27,58,107,.2);
}

/* ── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width:768px) {
  .sidebar { display:none; }
  .main { margin-left:0; }
  .form-grid { grid-template-columns:1fr; }
  .stat-strip { gap:10px; }
  .module-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:480px) {
  .module-grid { grid-template-columns:1fr; }
  .main { padding:16px 14px 40px; }
}

/* ── PWA / Mobile Responsive ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Sidebar — hidden by default on mobile, toggle with hamburger */
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    z-index: 200;
    width: 240px !important;
  }
  .sidebar.open { transform: translateX(0); }
  .sidebar-overlay {
    display: none;
    position: fixed;inset:0;background:rgba(0,0,0,.4);z-index:199;
  }
  .sidebar-overlay.open { display: block; }

  /* Main — full width on mobile */
  .main {
    margin-left: 0 !important;
    padding: 12px !important;
    margin-top: 56px !important;
  }

  /* Topbar */
  .topbar { padding: 0 12px; height: 56px; }
  .topbar-app { display: none; }
  .topbar-role { display: none; }

  /* Hamburger button */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    margin-right: 8px;
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .2s;
  }

  /* Form grids — single column */
  .form-grid { grid-template-columns: 1fr !important; }

  /* Log layout — stack vertically */
  .log-layout, .sr-layout, .qt-layout, .po-layout {
    flex-direction: column !important;
    height: auto !important;
  }
  .log-list-panel, .sr-list-panel, .qt-list-panel {
    width: 100% !important;
    max-height: 250px;
  }
  .log-detail, .sr-detail, .qt-detail { overflow: visible; }

  /* Modals — full screen on mobile */
  .modal-overlay { align-items: flex-end; padding: 0; }
  .modal {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 16px 16px 0 0 !important;
    max-height: 92vh !important;
    overflow-y: auto;
  }
  .log-modal {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 16px 16px 0 0 !important;
    max-height: 92vh !important;
  }

  /* Buttons — larger touch targets */
  .btn { min-height: 40px; }
  .btn-sm { min-height: 34px; padding: 6px 12px !important; }

  /* Tables — horizontal scroll */
  .report-tbl { min-width: 600px; }
  table { display: block; overflow-x: auto; }

  /* Page title */
  .page-title { font-size: 18px !important; }

  /* Stats cards — 2 col grid */
  .stat-cards { grid-template-columns: 1fr 1fr !important; }

  /* Signature canvas — full width */
  .sig-canvas { width: 100% !important; }

  /* Hide non-essential columns on mobile */
  .hide-mobile { display: none !important; }
}

/* Hamburger — hidden on desktop */
.hamburger { display: none; }

