@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ============================================================
   NEOBRUTALISM MODERN — Modbus Polling Admin
   Semua warna komponen wajib lewat token di bawah supaya
   dark mode cukup meng-override token (jangan hardcode hex
   di rule komponen).
   ============================================================ */

:root {
  --bg: #f4f5fa;
  --panel: #ffffff;
  --text: #0a0a0a;
  --muted: #5c6470;
  --line: #0a0a0a;
  --primary: #3b82f6;
  --primary-contrast: #ffffff;
  --primary-soft: #dbeafe;
  --secondary: #eab308;
  --secondary-soft: #fef3c7;
  --danger: #ef4444;
  --success: #22c55e;
  --accent: #8b5cf6;

  --border-width: 3px;
  --border-thin: 2px;
  --shadow-color: #0a0a0a;
  --shadow-offset: 5px;
  --radius: 10px;
  --radius-sm: 8px;
  --transition: all 0.16s ease-out;

  /* Surface tokens */
  --bg-dots: rgba(10, 10, 10, 0.55);
  --sidebar-bg: #fdfdfd;
  --surface-soft: #f1f5f9;
  --surface-head: #f8fafc;
  --surface-section: #e9eef5;
  --input-bg: #ffffff;
  --input-shadow: rgba(10, 10, 10, 0.18);
  --placeholder: #7b8492;
  --kicker-bg: #e0e7ff;
  --row-hover: #fef9c3;
  --row-zebra: rgba(10, 10, 10, 0.025);
  --selection-bg: #fde047;
  --selection-text: #0a0a0a;
  --badge-success-bg: #bbf7d0;
  --badge-warn-bg: #fde68a;
  --badge-muted-bg: #e2e8f0;
}

/* ============ DARK MODE ============ */
[data-theme="dark"] {
  --bg: #13161b;
  --panel: #1f242c;
  --text: #f1f3f5;
  --muted: #9aa4b2;
  --line: #dfe3e8;
  --primary: #4f83cc;
  --primary-contrast: #ffffff;
  --primary-soft: #243a57;
  --secondary: #eab308;
  --secondary-soft: #3a3320;
  --danger: #f87171;
  --success: #4ade80;
  --accent: #a78bfa;
  --shadow-color: #000000;

  --bg-dots: rgba(255, 255, 255, 0.10);
  --sidebar-bg: #191d24;
  --surface-soft: #2a2f37;
  --surface-head: #262b33;
  --surface-section: #2a2f37;
  --input-bg: #2a2f37;
  --input-shadow: rgba(0, 0, 0, 0.5);
  --placeholder: rgba(255, 255, 255, 0.85);
  --kicker-bg: #243a57;
  --row-hover: #3a3320;
  --row-zebra: rgba(255, 255, 255, 0.02);
  --selection-bg: #eab308;
  --selection-text: #0a0a0a;
  --badge-success-bg: #14532d;
  --badge-warn-bg: #57430a;
  --badge-muted-bg: #2a2f37;
}

/* ============ BASE ============ */
* { box-sizing: border-box; }

body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  min-height: 100vh;
  margin: 0;
  font-weight: 500;
  position: relative;
  transition: background-color 0.25s ease, color 0.25s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(var(--bg-dots) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: -1;
}

code {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-weight: 600;
  font-size: 0.92em;
  color: var(--accent); /* override pink hardcode bawaan Bootstrap */
}
a { color: inherit; text-decoration: none; }

::selection { background: var(--selection-bg); color: var(--selection-text); }

::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: var(--muted);
  border: 3px solid var(--bg);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ============ THEME TOGGLE (floating kanan-atas) ============ */
.theme-toggle {
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  cursor: pointer;
  background: var(--secondary);
  color: #0a0a0a;
  border: var(--border-thin) solid var(--line);
  border-radius: 999px;
  box-shadow: 3px 3px 0px var(--shadow-color);
  transition: var(--transition);
}
.theme-toggle:hover, .theme-toggle:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px var(--shadow-color);
  outline: none;
}
.theme-toggle:active {
  transform: translate(2px, 2px);
  box-shadow: 0px 0px 0px var(--shadow-color);
}
.theme-toggle .icon { font-size: 1.05rem; }
.theme-toggle .icon-sun, .theme-toggle .label-light { display: none; }
.theme-toggle .icon-moon, .theme-toggle .label-dark { display: inline; }
[data-theme="dark"] .theme-toggle .icon-sun,
[data-theme="dark"] .theme-toggle .label-light { display: inline; }
[data-theme="dark"] .theme-toggle .icon-moon,
[data-theme="dark"] .theme-toggle .label-dark { display: none; }

/* ============ LAYOUT ============ */
.shell {
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  overflow-y: auto;
  background: var(--sidebar-bg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-right: var(--border-width) solid var(--line);
  z-index: 10;
}

.brand h1, .page-head h2, .auth-hero h2, .section-head h3 {
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.brand h1 { font-size: 1.75rem; margin-top: 4px; line-height: 1.1; }
.brand p { color: var(--muted); font-size: 0.85rem; line-height: 1.5; margin-bottom: 0; }

.brand-kicker, .eyebrow {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: var(--primary);
  background: var(--kicker-bg);
  display: inline-block;
  padding: 4px 10px;
  border: var(--border-thin) solid var(--line);
  border-radius: 999px;
  box-shadow: 2px 2px 0px var(--shadow-color);
  margin-bottom: 10px;
}

/* Nav: flat saat idle, kartu brutal saat hover/aktif */
.nav { display: grid; gap: 8px; }
.nav a {
  position: relative;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: var(--border-thin) solid transparent;
  font-weight: 600;
  color: var(--muted);
  transition: var(--transition);
}
.nav a:hover, .nav a:focus-visible {
  color: var(--text);
  background: var(--surface-soft);
  border-color: var(--line);
  box-shadow: 3px 3px 0px var(--shadow-color);
  transform: translate(-1px, -1px);
  outline: none;
}
.nav a.is-active {
  color: var(--primary-contrast);
  background: var(--primary);
  border-color: var(--line);
  box-shadow: 3px 3px 0px var(--shadow-color);
}
.nav a.is-active::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 8px;
  bottom: 8px;
  width: 5px;
  background: var(--secondary);
  border: var(--border-thin) solid var(--line);
  border-radius: 4px;
}
.nav a.is-active:hover, .nav a.is-active:focus-visible {
  background: var(--primary);
  color: var(--primary-contrast);
}
.nav a:active {
  transform: translate(2px, 2px);
  box-shadow: 0px 0px 0px var(--shadow-color);
}

.profile-card {
  margin-top: auto;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--secondary);
  border: var(--border-width) solid var(--line);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0px var(--shadow-color);
  color: #0a0a0a;
}
.profile-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #0a0a0a;
  opacity: 0.75;
}
.profile-name { font-weight: 700; margin-top: 6px; font-size: 1.05em; }
.profile-email {
  color: #0a0a0a;
  opacity: 0.75;
  font-size: 0.82rem;
  word-break: break-all;
  margin-bottom: 12px;
}

.main {
  margin-left: 280px;
  padding: 40px;
  overflow-x: hidden;
}
.main-auth {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  margin-left: auto;
  padding: 72px 20px 40px;
}
.main-auth .auth-card { margin: auto; }

/* ============ PAGE HEAD ============ */
.page-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 28px;
  background: var(--panel);
  padding: 28px;
  border: var(--border-width) solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0px var(--shadow-color);
}
.page-head.split { align-items: center; }
.page-head h2 { font-size: 1.65rem; margin-bottom: 6px; }
.page-head p { margin: 0; color: var(--muted); max-width: 70ch; line-height: 1.55; }

/* ============ CARDS ============ */
.auth-card, .form-card, .table-card {
  background: var(--panel);
  border: var(--border-width) solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0px var(--shadow-color);
  margin-bottom: 28px;
}

.auth-card {
  width: 100%;
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.auth-hero {
  padding: 40px;
  background: var(--primary);
  color: var(--primary-contrast);
  border-right: var(--border-width) solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.auth-hero h2 { color: inherit; }
.auth-hero p { color: inherit; opacity: 0.88; font-weight: 500; }
.auth-hero .eyebrow { color: var(--text); background: var(--secondary); }
.auth-card form { padding: 40px; background: var(--panel); }

/* ============ FORMS ============ */
.stack { display: grid; gap: 20px; }
.form-grid { display: grid; gap: 20px; }
.form-grid.two { grid-template-columns: 1fr 1fr; }

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
}

input, select, textarea, .form-control, .form-select {
  width: 100%;
  border: var(--border-thin) solid var(--line) !important;
  background: var(--input-bg) !important;
  color: var(--text) !important;
  border-radius: var(--radius-sm) !important;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  box-shadow: 2px 2px 0px var(--input-shadow) !important;
}
/* !important: mengalahkan .form-control::placeholder bawaan Bootstrap (dipakai di login) */
input::placeholder, textarea::placeholder, .form-control::placeholder {
  color: var(--placeholder) !important;
  opacity: 1 !important;
}
input:focus, select:focus, textarea:focus, .form-control:focus, .form-select:focus {
  outline: none !important;
  border-color: var(--primary) !important;
  box-shadow: 4px 4px 0px var(--primary) !important;
  transform: translate(-1px, -1px);
}

/* Brutalist checkbox */
input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px;
  flex: 0 0 auto;
  margin: 0;
  padding: 0 !important;
  border: var(--border-thin) solid var(--line) !important;
  border-radius: 6px !important;
  background: var(--input-bg) !important;
  box-shadow: 2px 2px 0px var(--shadow-color) !important;
  cursor: pointer;
  display: inline-grid;
  place-content: center;
  vertical-align: middle;
  transition: var(--transition);
}
input[type="checkbox"]::before {
  content: "";
  width: 13px;
  height: 13px;
  transform: scale(0);
  transition: transform 0.1s ease-in-out;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
input[type="checkbox"]:checked { background: var(--secondary) !important; }
input[type="checkbox"]:checked::before {
  transform: scale(1);
  background-color: #0a0a0a;
}
input[type="checkbox"]:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0px var(--shadow-color) !important;
}
input[type="checkbox"]:focus-visible {
  outline: none;
  border-color: var(--primary) !important;
  box-shadow: 3px 3px 0px var(--primary) !important;
}

/* ============ BUTTONS ============ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: var(--border-thin) solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 4px 4px 0px var(--shadow-color);
  transition: var(--transition);
  text-decoration: none;
  font-family: inherit;
  background: var(--panel);
  color: var(--text);
}
.button:hover, .button:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--shadow-color);
  outline: none;
}
.button:active {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0px var(--shadow-color);
}

.button-primary { background: var(--primary); color: var(--primary-contrast); }
.button-secondary { background: var(--secondary); color: #0a0a0a; }
.button-danger { background: var(--danger); color: #fff; }
.button-ghost { background: var(--surface-soft); color: var(--text); }
.button-small { padding: 6px 12px; font-size: 0.82rem; box-shadow: 3px 3px 0px var(--shadow-color); }
.button.disabled { opacity: 0.5; pointer-events: none; }

.inline-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ============ TOOLBAR (filter bar sebagai satu kartu) ============ */
.toolbar {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  background: var(--panel);
  padding: 14px;
  border: var(--border-thin) solid var(--line);
  border-radius: var(--radius);
  box-shadow: 3px 3px 0px var(--shadow-color);
}
.toolbar-grid { display: grid; grid-template-columns: minmax(220px, 2fr) repeat(3, minmax(150px, 1fr)) auto; }

/* ============ PAGINATION ============ */
.pagination-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  flex-wrap: wrap;
}
.pagination-controls { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.pagination-controls .button { padding: 8px 14px; font-size: 0.85rem; box-shadow: 3px 3px 0px var(--shadow-color); }

/* ============ BADGES ============ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border: var(--border-thin) solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  background: var(--surface-soft);
  box-shadow: 2px 2px 0px var(--shadow-color);
  white-space: nowrap;
}
.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  border: 1px solid var(--line);
}
.badge-success { background: var(--badge-success-bg); }
.badge-success::before { background: var(--success); }
.badge-warn { background: var(--badge-warn-bg); }
.badge-warn::before { background: var(--secondary); }
.badge-muted { background: var(--badge-muted-bg); color: var(--muted); }

/* ============ DASHBOARD ============ */
.stats-grid, .action-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  margin-bottom: 28px;
}

.stat-card, .action-card {
  display: block;
  background: var(--panel);
  border: var(--border-width) solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0px var(--shadow-color);
  transition: var(--transition);
}
.stat-card:hover, .action-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: calc(var(--shadow-offset) + 3px) calc(var(--shadow-offset) + 3px) 0px var(--shadow-color);
}
.stat-card:hover { background: var(--secondary-soft); }
.action-card:hover { background: var(--primary-soft); }

.stat-card span {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: var(--muted);
  border-bottom: var(--border-thin) solid var(--secondary);
  padding-bottom: 4px;
  display: inline-block;
  margin-bottom: 12px;
}
.stat-card strong {
  display: block;
  margin: 6px 0;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.stat-card small, .action-card p { color: var(--muted); font-weight: 600; }
.action-card h3 { font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }

/* ============ TABLES ============ */
.table-card { overflow-x: auto; }
.table-card table, .register-table { width: 100%; border-collapse: collapse; }
.table-card th, .table-card td, .register-table th, .register-table td {
  padding: 14px 16px;
  border-bottom: var(--border-thin) solid var(--line);
  vertical-align: middle;
  text-align: left;
}
.table-card th, .register-table th {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  background: var(--surface-head);
  border-bottom: var(--border-width) solid var(--line);
  white-space: nowrap;
}
.table-card tbody tr:nth-child(even) { background: var(--row-zebra); }
.table-card tbody tr { transition: background 0.1s; }
.table-card tbody tr:hover { background: var(--row-hover); }
.table-card tbody tr:last-child td { border-bottom: none; }

.actions { white-space: nowrap; }
.actions .button { margin: 2px 4px 2px 0; }
.muted { color: var(--muted); font-size: 0.85rem; font-weight: 600; margin-top: 4px; }
.empty { text-align: center; color: var(--muted); padding: 36px 16px !important; }

/* ============ BANNERS ============ */
.banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-weight: 700;
  border: var(--border-width) solid var(--line);
  box-shadow: 4px 4px 0px var(--shadow-color);
}
.banner::before {
  flex: 0 0 auto;
  display: inline-grid;
  place-content: center;
  width: 26px;
  height: 26px;
  border: var(--border-thin) solid var(--line);
  border-radius: 50%;
  background: var(--panel);
  color: var(--text);
  font-size: 0.85rem;
}
.banner.success { background: var(--success); color: #0a0a0a; }
.banner.success::before { content: "✓"; }
.banner.danger { background: var(--danger); color: #fff; }
.banner.danger::before { content: "!"; }

/* ============ SECTIONS ============ */
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  background: var(--surface-section);
  border-bottom: var(--border-width) solid var(--line);
  border-radius: var(--radius) var(--radius) 0 0;
}
.section-head.tight {
  margin-top: 24px;
  border: var(--border-width) solid var(--line);
  border-radius: var(--radius) var(--radius) 0 0;
  margin-bottom: 0;
}
.section-head h3 { margin: 0; font-weight: 700; font-size: 1.05rem; }
.section-head p { margin: 4px 0 0; color: var(--muted); font-size: 0.85rem; font-weight: 500; }

.register-table-wrap {
  overflow-x: auto;
  border-top: none;
  background: var(--panel);
}

/* ============ LIVE PAGE ============ */
.live-summary-grid .stat-card strong { font-size: 1.7rem; }
.live-topics-grid .action-card h3 { margin-bottom: 10px; }
.live-topics-grid code { word-break: break-all; }

.live-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}
.live-panel-wide { grid-column: 1 / -1; }
.live-panel-body { padding: 20px; }

.live-panel pre {
  margin: 12px 0 0;
  padding: 16px;
  background: var(--surface-head);
  border: var(--border-thin) solid var(--line);
  border-radius: var(--radius-sm);
  min-height: 180px;
  max-height: 380px;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
  box-shadow: 3px 3px 0px var(--input-shadow);
  font-size: 0.85rem;
}

.live-log-wrap { overflow-x: auto; }

/* ============ MODALS (Bootstrap override) ============ */
.modal-content {
  background-color: var(--panel);
  color: var(--text);
  border: var(--border-width) solid var(--line);
  border-radius: var(--radius);
  box-shadow: 10px 10px 0px var(--shadow-color);
}
.modal-header {
  border-bottom: var(--border-width) solid var(--line);
  background-color: var(--secondary);
  padding: 16px 24px;
  border-radius: calc(var(--radius) - var(--border-width)) calc(var(--radius) - var(--border-width)) 0 0;
}
.modal-title {
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: #0a0a0a;
}
.modal-body { padding: 24px; }
.modal-footer {
  border-top: var(--border-width) solid var(--line);
  background-color: var(--surface-soft);
  padding: 16px 24px;
  border-radius: 0 0 calc(var(--radius) - var(--border-width)) calc(var(--radius) - var(--border-width));
}

.btn-close {
  background-color: var(--input-bg);
  border: var(--border-thin) solid var(--line);
  opacity: 1;
  box-shadow: 3px 3px 0px var(--shadow-color);
  transition: var(--transition);
  border-radius: 6px;
  padding: 12px;
}
.btn-close:hover, .btn-close:focus {
  background-color: var(--danger);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px var(--shadow-color);
  opacity: 1;
  outline: none;
}
.btn-close:active {
  transform: translate(2px, 2px);
  box-shadow: 0px 0px 0px var(--shadow-color);
}

/* ============ MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .shell { grid-template-columns: 1fr; }
  .sidebar {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    border-right: none;
    border-bottom: var(--border-width) solid var(--line);
    padding-top: 70px; /* ruang untuk theme toggle floating */
  }
  .main { margin-left: 0; padding: 24px; }
  .auth-card { grid-template-columns: 1fr; }
  .auth-hero {
    border-right: none;
    border-bottom: var(--border-width) solid var(--line);
    padding: 30px;
  }
}

@media (max-width: 720px) {
  .page-head { flex-direction: column; align-items: stretch; padding: 20px; }
  .page-head.split { align-items: stretch; }
  .toolbar { flex-direction: column; }
  .toolbar-grid { grid-template-columns: 1fr; }
  .pagination-bar { align-items: flex-start; }
  .pagination-controls { width: 100%; }
  .form-grid.two { grid-template-columns: 1fr; }
  .live-grid { grid-template-columns: 1fr; }
  .main { padding: 16px; }
  .theme-toggle { height: 38px; padding: 0 12px; top: 12px; right: 12px; }
  /* !important: mengalahkan selector [data-theme="dark"] yang lebih spesifik */
  .theme-toggle .label-dark, .theme-toggle .label-light { display: none !important; }
}
