:root {
  --ink: #121615;
  --muted: #63706d;
  --line: #ccd8d4;
  --paper: #f7f9f4;
  --panel: #ffffff;
  --steel: #dfe8e4;
  --aqua: #009d9a;
  --lime: #c9ff3d;
  --coral: #ef4c2f;
  --black: #070909;
  --shadow: 0 20px 60px rgba(20, 31, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 1180px;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 1180px;
  min-height: 100vh;
  color: var(--ink);
  font-family: Aptos, "IBM Plex Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
  background:
    linear-gradient(90deg, rgba(18, 22, 21, 0.045) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(0deg, rgba(18, 22, 21, 0.04) 1px, transparent 1px) 0 0 / 32px 32px,
    radial-gradient(circle at 70% 20%, rgba(201, 255, 61, 0.16), transparent 28%),
    var(--paper);
}

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

button {
  cursor: pointer;
}

.shell {
  width: 1180px;
  margin: 0 auto;
  padding: 26px 0 54px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 18px 0 14px;
  color: var(--paper);
  background: var(--black);
  border: 1px solid #1b2421;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--black);
  font-family: "DIN Alternate", Impact, sans-serif;
  font-weight: 800;
  background: var(--lime);
  border: 1px solid #eefdb6;
}

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

.brand strong {
  font-family: "DIN Alternate", Aptos, sans-serif;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  margin-top: 4px;
  color: #9fb2ad;
  font-size: 12px;
}

.nav {
  display: flex;
  padding: 4px;
  gap: 4px;
  border: 1px solid #24312d;
  background: #111715;
}

.nav-button {
  min-width: 104px;
  height: 38px;
  color: #bdc9c5;
  background: transparent;
  border: 0;
}

.nav-button.is-active {
  color: var(--black);
  background: var(--lime);
}

.signal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 260px;
  color: #d8e3df;
  font-size: 13px;
}

.signal span {
  width: 10px;
  height: 10px;
  background: var(--aqua);
  box-shadow: 0 0 0 4px rgba(0, 157, 154, 0.2);
}

.admin-corner {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 30;
  min-width: 52px;
  min-height: 30px;
  padding: 0 10px;
  color: #859690;
  font-family: "DIN Alternate", Aptos, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: rgba(7, 9, 9, 0.72);
  border: 1px solid rgba(36, 49, 45, 0.9);
  border-radius: 5px;
  opacity: 0.42;
}

.admin-corner:hover,
.admin-corner.is-active {
  color: var(--lime);
  border-color: rgba(201, 255, 61, 0.64);
  opacity: 0.92;
}

main {
  margin-top: 26px;
}

.panel-grid {
  display: none;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: stretch;
}

.panel-grid.is-visible {
  display: grid;
}

.device-rack,
.redeem-console,
.login-slab,
.tool-panel,
.table-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.device-rack {
  min-height: 704px;
  padding: 28px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.section-heading p,
.admin-header p,
.login-slab p {
  margin: 0;
  color: var(--aqua);
  font-family: "DIN Alternate", Aptos, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h1,
.admin-header h2,
.login-slab h2 {
  margin: 6px 0 0;
  font-family: "DIN Alternate", "PingFang SC", sans-serif;
  font-size: 34px;
  line-height: 1.04;
}

.rack-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.device-card {
  display: flex;
  flex-direction: column;
  min-height: 164px;
  padding: 16px;
  background: linear-gradient(135deg, #ffffff, #eef5f2);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.device-card:hover {
  transform: translateY(-2px);
  border-color: var(--aqua);
  box-shadow: 0 16px 28px rgba(0, 90, 88, 0.14);
}

.device-card header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.device-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.chip {
  flex: 0 0 auto;
  padding: 5px 8px;
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  background: var(--lime);
  border: 1px solid #b7ea32;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
}

.spec {
  min-height: 44px;
  padding: 8px;
  background: #f8fbf9;
  border: 1px solid #dce7e3;
}

.spec span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.spec strong {
  display: block;
  margin-top: 2px;
  font-size: 13px;
}

.hint,
.muted {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.device-card .hint {
  flex: 1;
}

.device-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #dce7e3;
}

.device-card-footer span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.rent-button {
  min-width: 84px;
  min-height: 36px;
  padding: 0 14px;
  color: var(--black);
  font-weight: 900;
  background: var(--lime);
  border: 1px solid #bce935;
  border-radius: 6px;
}

.rent-button:hover {
  background: #dcff75;
}

.redeem-console {
  position: relative;
  overflow: hidden;
  min-height: 704px;
  color: #e8f2ef;
  background:
    linear-gradient(180deg, rgba(0, 157, 154, 0.12), transparent 42%),
    #0d1211;
  border-color: #1b2926;
}

.console-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  color: #d4e4df;
  border-bottom: 1px solid #22332f;
}

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

.console-strip span,
.tool-title span,
.table-head span {
  color: var(--aqua);
  font-family: "DIN Alternate", Aptos, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-strip strong {
  color: var(--lime);
  font-size: 13px;
}

.buy-code-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  background: var(--lime);
  border: 1px solid #dfff75;
  border-radius: 6px;
}

.buy-code-action:hover {
  background: #dcff75;
}

.user-console {
  padding: 20px 24px 0;
}

.guest-view {
  display: block;
}

.auth-panel {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid #243832;
  border-radius: 8px;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 5px;
  background: #0f1715;
  border-bottom: 1px solid #263a35;
}

.auth-tab {
  min-height: 38px;
  color: #9fb6b0;
  font-weight: 900;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 5px;
}

.auth-tab.is-active {
  color: var(--black);
  background: var(--lime);
  border-color: #bce935;
}

.auth-form {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.compact-title {
  margin-bottom: 2px;
}

.compact-title strong {
  color: #f1faf6;
  font-size: 17px;
}

.account-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: #101917;
  border: 1px solid #263a35;
  border-radius: 8px;
}

.account-strip span {
  display: block;
  color: var(--aqua);
  font-family: "DIN Alternate", Aptos, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-strip strong {
  display: block;
  margin-top: 3px;
  color: #f2fbf7;
  font-size: 16px;
}

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

.redeem-form {
  display: grid;
  gap: 18px;
  padding: 28px 24px 22px;
}

label {
  display: grid;
  gap: 8px;
}

label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.redeem-console label span {
  color: #b9cbc6;
}

textarea,
input,
select {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fbfdfb;
  border: 1px solid #b9c8c4;
  border-radius: 6px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  resize: vertical;
  min-height: 134px;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  line-height: 1.55;
}

.redeem-console textarea,
.redeem-console input {
  color: #ecf5f2;
  background: #151e1c;
  border-color: #2d403b;
}

textarea:focus,
input:focus,
select:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(0, 157, 154, 0.14);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-row.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-box {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--lime);
  font-weight: 900;
  background: #151e1c;
  border: 1px solid #2d403b;
  border-radius: 6px;
}

.modal-open {
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgba(7, 9, 9, 0.68);
}

.modal-overlay[hidden] {
  display: none;
}

.rent-dialog {
  width: 520px;
  max-width: calc(100vw - 64px);
  color: #e8f2ef;
  background:
    linear-gradient(180deg, rgba(0, 157, 154, 0.12), transparent 48%),
    #0d1211;
  border: 1px solid #263a35;
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.rent-dialog-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-bottom: 1px solid #263a35;
}

.rent-dialog-head span {
  color: var(--aqua);
  font-family: "DIN Alternate", Aptos, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rent-dialog-head h2 {
  margin: 5px 0 0;
  color: #f4fbf8;
  font-size: 24px;
  line-height: 1.12;
}

.modal-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #a7bbb5;
  font-weight: 900;
  background: #121b18;
  border: 1px solid #2d403b;
  border-radius: 6px;
}

.modal-close:hover {
  color: var(--lime);
  border-color: var(--aqua);
}

.rent-config-summary {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 8px;
  padding: 16px 20px 0;
}

.rent-config-summary div {
  min-width: 0;
  padding: 10px;
  background: #101917;
  border: 1px solid #263a35;
  border-radius: 6px;
}

.rent-config-summary span,
.rent-config-summary strong {
  display: block;
}

.rent-config-summary span {
  color: #8fa39d;
  font-size: 11px;
}

.rent-config-summary strong {
  overflow: hidden;
  margin-top: 4px;
  color: #edf7f3;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.balance-summary {
  position: relative;
  padding-right: 96px;
}

.balance-summary a {
  position: absolute;
  right: 10px;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 9px;
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  background: var(--lime);
  border: 1px solid #dfff75;
  border-radius: 6px;
  transform: translateY(-50%);
}

.balance-summary a:hover {
  background: #dcff75;
}

.rent-form {
  display: grid;
  gap: 16px;
  padding: 18px 20px 20px;
}

.rent-form label span {
  color: #b9cbc6;
}

.rent-form input {
  color: #ecf5f2;
  background: #151e1c;
  border-color: #2d403b;
}

.rent-quote {
  min-height: 46px;
  padding: 12px;
  color: var(--lime);
  font-size: 17px;
  font-weight: 900;
  background: #101917;
  border: 1px solid #2d403b;
  border-radius: 6px;
}

.rent-quote.is-insufficient {
  color: #ff9a87;
  border-color: #804438;
}

.modal-actions {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
}

.primary-action,
.ghost-action,
.danger-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
  border: 1px solid transparent;
}

.primary-action {
  color: var(--black);
  background: var(--lime);
  border-color: #bce935;
}

.primary-action:hover {
  background: #dcff75;
}

.ghost-on-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 40px;
  padding: 0 14px;
  color: #eef8f5;
  font-weight: 800;
  white-space: nowrap;
  background: #16211f;
  border: 1px solid #36504a;
  border-radius: 6px;
}

.ghost-on-dark:hover {
  border-color: var(--aqua);
}

.ghost-action {
  color: var(--ink);
  background: #f8fbf9;
  border-color: var(--line);
}

.ghost-action:hover {
  border-color: var(--aqua);
}

.danger-action {
  color: #842515;
  background: #fff5f2;
  border-color: #ffc5ba;
}

.danger-action:hover {
  border-color: var(--coral);
}

button:disabled,
button:disabled:hover,
input:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 116px;
  gap: 10px;
}

.result-terminal {
  min-height: 230px;
  margin: 0 24px 24px;
  padding: 18px;
  color: #c9f9ef;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  line-height: 1.6;
  background:
    linear-gradient(90deg, rgba(201, 255, 61, 0.08) 1px, transparent 1px) 0 0 / 16px 16px,
    #060908;
  border: 1px solid #243832;
  border-radius: 8px;
}

.terminal-line {
  margin-bottom: 8px;
}

.terminal-success {
  color: var(--lime);
}

.terminal-error {
  color: #ff9a87;
}

.order-summary-card {
  margin-top: 14px;
  padding: 14px;
  color: var(--ink);
  background: #eef8f5;
  border: 1px solid #bfe1da;
  border-radius: 8px;
}

.order-summary-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.order-summary-card dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 7px 12px;
  margin: 0;
}

.order-summary-card dt {
  color: var(--muted);
}

.order-summary-card dd {
  margin: 0;
  font-weight: 700;
}

.my-rentals {
  padding: 0 24px 22px;
}

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

.rental-card {
  display: grid;
  grid-template-columns: 1fr 154px;
  gap: 14px;
  padding: 14px;
  color: #e9f5f1;
  background: #111917;
  border: 1px solid #273c36;
  border-radius: 8px;
}

.rental-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
}

.rental-card p {
  margin: 6px 0 0;
  color: #aac0ba;
  font-size: 12px;
  line-height: 1.45;
}

.rental-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.rental-meta span {
  min-height: 24px;
  padding: 4px 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  background: #dff0eb;
  border-radius: 999px;
}

.use-action {
  align-self: center;
  width: 154px;
  min-height: 42px;
  white-space: nowrap;
}

.rental-actions {
  display: grid;
  gap: 8px;
  align-self: center;
}

.order-api-panel {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(183, 211, 204, 0.16);
}

.order-api-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #dcefe9;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-api-heading code {
  max-width: 48%;
  overflow: hidden;
  color: #a9beb8;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-weight: 700;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.curl-grid {
  display: grid;
  gap: 10px;
}

.device-key-card,
.curl-card {
  min-width: 0;
  padding: 10px;
  background: #09100e;
  border: 1px solid #263a35;
  border-radius: 8px;
}

.device-key-card > div,
.curl-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.device-key-card strong,
.curl-card strong {
  color: #eef8f5;
  font-size: 12px;
}

.device-key-card > code {
  display: block;
  overflow-x: auto;
  color: #c9f9ef;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  line-height: 1.5;
  white-space: nowrap;
}

.curl-card pre {
  max-width: 100%;
  margin: 0;
  overflow-x: auto;
  color: #bfece3;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  line-height: 1.55;
  white-space: pre;
}

.admin-zone {
  display: block;
}

.login-slab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  padding: 36px;
}

.login-form {
  display: grid;
  grid-template-columns: 320px 120px;
  gap: 12px;
}

.admin-dashboard {
  display: grid;
  gap: 22px;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.admin-actions {
  display: flex;
  gap: 10px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.metric {
  min-height: 92px;
  padding: 15px;
  background: var(--black);
  border: 1px solid #26332f;
  border-radius: 8px;
}

.metric span {
  color: #9fb2ad;
  font-size: 12px;
}

.metric strong {
  display: block;
  margin-top: 10px;
  color: var(--lime);
  font-family: "DIN Alternate", Aptos, sans-serif;
  font-size: 34px;
}

.operations-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 22px;
  align-items: start;
}

.tool-panel,
.table-panel {
  padding: 20px;
}

.tool-title,
.table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.tool-title strong,
.table-head strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
}

.stack-form {
  display: grid;
  gap: 14px;
}

.stack-form.compact {
  gap: 12px;
}

.checkline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.checkline input {
  width: 18px;
  min-height: 18px;
}

.batch-output {
  margin-top: 16px;
}

.batch-toolbar {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.code-textarea {
  min-height: 180px;
  color: #d9fff4;
  background: #0b1110;
  border-color: #2b403b;
}

.table-panel {
  overflow: hidden;
}

.data-table {
  overflow: auto;
  max-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

th,
td {
  padding: 11px 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e4ece9;
}

th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: #50615d;
  font-size: 12px;
  background: #f3f8f6;
}

td code {
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  word-break: break-all;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  min-height: 24px;
  padding: 2px 8px;
  color: var(--ink);
  background: var(--steel);
  border: 1px solid #c1ceca;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.status-pill.unused,
.status-pill.active {
  background: #dbff88;
  border-color: #bde958;
}

.status-pill.redeemed {
  background: #bcefed;
  border-color: #91d8d5;
}

.status-pill.void,
.status-pill.expired {
  background: #ffd5cc;
  border-color: #ffb2a2;
}

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

.mini-button {
  min-height: 30px;
  padding: 0 10px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.mini-button:hover {
  border-color: var(--coral);
}

.empty-state {
  padding: 28px;
  color: var(--muted);
  text-align: center;
}

.toast {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 20;
  max-width: 420px;
  padding: 14px 16px;
  color: #f3fffb;
  background: var(--black);
  border: 1px solid #24342f;
  border-left: 5px solid var(--aqua);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.toast.error {
  border-left-color: var(--coral);
}

[hidden] {
  display: none !important;
}
