/* ========== Base tokens for dark background #12161d ========== */
:root{
  --bg: #12161d;
  --panel: rgba(255,255,255,.03);
  --panel-2: rgba(255,255,255,.05);
  --border: rgba(255,255,255,.10);
  --border-2: rgba(255,255,255,.14);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --accent: #66d9ef;
  --accent-2: #a78bfa;
}

/* Optional: smooth baseline */
body{
  background: var(--bg);
  color: var(--text);
}

/* ========== TABLE STYLES (2-column characteristics table) ========== */
table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden; /* keeps rounded corners for row backgrounds */
}

table tbody tr{
  transition: background-color .2s ease, transform .2s ease;
}

table tbody tr:nth-child(odd){
  background: rgba(255,255,255,.02);
}

table tbody tr:nth-child(even){
  background: rgba(255,255,255,.04);
}

table tbody tr:hover{
  background: rgba(102,217,239,.08);
}

table td{
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.45;
}

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

/* 2-column emphasis: left column is label, right is value */
table td:first-child{
  width: 38%;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .2px;
  border-right: 1px solid var(--border);
}

table td:last-child{
  color: var(--text);
}

/* Improve readability on small screens */
@media (max-width: 640px){
  table td{
    padding: 12px 12px;
  }
  table td:first-child{
    width: 44%;
  }
}

/* ========== UL LIST STYLES (replaces default bullets) ========== */
ul.text-list{
  list-style: none;
  margin: 14px 0;
  padding: 0;
}

ul.text-list li{
  position: relative;
  padding: 10px 12px 10px 38px;
  margin: 10px 0;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  line-height: 1.55;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

ul.text-list li:hover{
  background: var(--panel-2);
  border-color: var(--border-2);
}

/* Custom bullet (dot) */
ul.text-list li::before{
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(102,217,239,.12);
}

/* Optional: allow nested lists to look distinct */
ul.text-list ul{
  margin-top: 10px;
  padding-left: 6px;
}

ul.text-list ul li{
  background: rgba(255,255,255,.02);
  border-color: rgba(255,255,255,.08);
}

ul.text-list ul li::before{
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(167,139,250,.14);
}

/* Links inside table/list */
table a, ul.text-list a{
  color: var(--accent);
  text-decoration: none;
}

table a:hover, ul a:hover{
  text-decoration: underline;
}

/* If you have strong tags inside list items */
ul.text-list li strong{
  color: rgba(255,255,255,.96);
}
