:root{
  /* LOCKED PALETTE */
  --obsidian:#0B0F14;
  --void:#141A22;
  --steel:#2A2F36;
  --cyan:#2CE6E6;
  --white:#FFFFFF;

  --line: rgba(255,255,255,0.08);
  --panel: rgba(20,26,34,0.55);
  --panel2: rgba(20,26,34,0.35);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  color: var(--white);
  background:
    radial-gradient(1100px 900px at 50% 38%, rgba(44,230,230,0.08), transparent 60%),
    radial-gradient(900px 700px at 50% 58%, rgba(20,26,34,0.55), transparent 65%),
    var(--obsidian);
}

.wrap{
  min-height:100vh;
  display:grid;
  place-content:center;
  padding: 26px 14px;
}

/* card */
.card{
  border: 1px solid rgba(255,255,255,0.10);
  background: var(--panel);
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.55);
  padding: 22px 22px 18px;
}

.card-wide{
  width: min(980px, 94vw);
}

/* header row */
.toprow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

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

.dot{
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(44,230,230,0.20);
  border: 1px solid rgba(44,230,230,0.55);
  box-shadow: 0 0 14px rgba(44,230,230,0.20);
}

.title{
  margin:0;
  font-size: 22px;
  letter-spacing: 0.5px;
}

.sub{
  margin: 10px 0 0;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}

/* sections */
.sectionTitle{
  margin: 18px 0 6px;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.hint{
  margin: 0 0 12px;
  color: rgba(255,255,255,0.62);
  font-size: 12px;
}

/* divider */
.divider{
  height: 1px;
  background: var(--line);
  margin: 16px 0;
}

/* tables */
.tableWrap{
  overflow:auto;
  border-radius: 14px;
  background: rgba(11,15,20,0.20);
  border: 1px solid rgba(255,255,255,0.06);
}

.table{
  width:100%;
  border-collapse: collapse;
  min-width: 720px;
}

.table thead th{
  text-align:left;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.70);
  padding: 14px 14px;
  border-bottom: 1px solid var(--line);
}

.table tbody td{
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
}

.table tbody tr:last-child td{
  border-bottom: none;
}

/* status pill */
.pill{
  display:inline-flex;
  align-items:center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(44,230,230,0.28);
  background: rgba(44,230,230,0.08);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  text-transform: lowercase;
}

.pill.gray{
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}

/* buttons */
.btn{
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(44,230,230,0.35);
  background: rgba(20,26,34,0.35);
  color: var(--white);
  cursor:pointer;
  letter-spacing: 0.5px;
}

.btn:hover{ color: var(--cyan); }

.btn-ghost{
  border-color: rgba(255,255,255,0.14);
}

/* footer links */
.footerRow{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  margin-top: 14px;
}

.smallLink{
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  text-decoration:none;
}

.smallLink:hover{ color: var(--cyan); }

/* messages */
.err{
  margin-top: 12px;
  font-size: 12px;
  color: #ffb3b3;
}

.ok{
  margin-top: 12px;
  font-size: 12px;
  color: #bfffe5;
}


.form{ margin-top: 10px; }

.field{
  display:grid;
  gap: 8px;
  margin: 12px 0;
}

label{
  font-size: 12px;
  color: rgba(255,255,255,0.72);
}

input{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(11,15,20,0.45);
  color: var(--white);
  outline: none;
}

input:focus{
  border-color: rgba(44,230,230,0.45);
}
