/* ===============================
   style.css — Chandigarh Call Girls
   (No CSS variables, No Grid/1fr)
================================= */

/* ---------- Design tokens (used by your file) ---------- */
:root{
  --border: rgba(255,255,255,.12);
  --purple-500: #7c3aed;
  --purple-600: #6931d4;
  --ink: #f5f4fb;
  --ink-dim: #cfc7ea;
}

/* ---------- Base Reset ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* ---------- Typography & Body ---------- */
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: #1a0b2e;            /* deep purple base */
  color: #f5f4fb;                  /* light ink */
  line-height: 1.6;
}

/* ---------- Layout Container ---------- */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ======================================
   Header (Sticky, Purple Neon, Flexbox)
====================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  /* Neon Night gradient */
  background: linear-gradient(135deg, #2b1055 0%, #3a0ca3 50%, #7209b7 100%);
  background-size: 200% 200%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 8px 24px rgba(114, 9, 183, 0.25);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  justify-content: space-between; /* NEW */
}

/* Brand (left) */
.brand {
  font-weight: 800;
  letter-spacing: 0.3px;
  font-size: 22px;
  color: #ffffff;
}
.brand span { color: #7c3aed; } /* accent purple */

/* Nav (right) */
.nav {
  margin-left: auto;               /* push to right */
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-link {
  color: #ffffff;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-link:hover,
.nav-link:focus {
  background: rgba(124, 58, 237, 0.20);
}

/* Hamburger (hidden on desktop) */
.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.15);
  cursor: pointer;
}
.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* Sticky shadow tweak on scroll */
.site-header.scrolled {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  background: linear-gradient(135deg, #2b1055 0%, #3a0ca3 50%, #7209b7 100%);
}

/* ===== Hero (rich complementary background) ===== */
.hero {
  text-align: center;
  padding: 110px 0 90px;
  /* deep purple -> indigo gradient with a subtle top glow */
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(124, 58, 237, 0.25), transparent 60%),
    linear-gradient(180deg, #2b1055 0%, #1a0b2e 60%, #0d0718 100%);
}

.hero-title {
  font-size: 42px;
  line-height: 1.18;
  margin: 0 0 10px 0;
  color: #ffffff;
}

.hero-sub {
  color: #cfc7ea;
  margin: 8px 0;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* ===== Search UI ===== */
.hero-search {
  margin: 18px auto 14px;
}

.search-group {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(114, 9, 183, 0.25);
}

.search-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 12px 14px;
  min-width: 190px;
  font-size: 16px;
  color: #ffffff;
  background: rgba(43, 16, 85, 0.85);
  border: 0;
}

.search-btn {
  padding: 12px 18px;
  font-size: 16px;
  color: #ffffff;
  background: #7c3aed;
  border: 0;
  cursor: pointer;
}
.search-btn:hover { opacity: 0.95; }

/* sr-only for accessibility labels */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  border: 0;
}

/* mobile tune-up */
@media (max-width: 900px) {
  .hero-title { font-size: 32px; }
  .search-select { min-width: 160px; }
}


/* ======================================
   Footer
====================================== */
.site-footer {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #cfc7ea;
}

/* ======================================
   Buttons (generic)
====================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f5f4fb;
  background: transparent;
  cursor: pointer;
}
.btn-primary {
  background: #7c3aed;
  border-color: #7c3aed;
  color: #ffffff;
}
.btn-outline {
  background: transparent;
}
.btn:hover {
  opacity: 0.95;
}

/* ======================================
   Utilities
====================================== */
.text-dim { color: #cfc7ea; }
.hide { display: none !important; }

/* ======================================
   Responsive (Mobile)
====================================== */
@media (max-width: 900px) {
  /* show hamburger on mobile */
  .nav-toggle { display: inline-block; }

  /* full-width overlay menu */
  .nav {
    position: fixed;
    left: 0; right: 0;
    top: 60px;                /* below header */
    bottom: auto;
    background: rgba(43, 16, 85, 0.96);
    display: none;
    flex-direction: column;
    padding: 10px 16px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    margin-left: 0;           /* reset ML from desktop */
  }
  .nav.open { display: flex; }

  .nav-link {
    padding: 14px 10px;
    font-size: 16px;
    border-radius: 12px;
  }

  /* hamburger -> X animation */
  .nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* hero text size for small screens */
  .hero h1 { font-size: 30px; }
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.bc-list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: #cfc7ea;
  font-size: 16px;
  font-weight: bold;
}

.bc-item a {
  color: #cfc7ea;
  text-decoration: none;
}
.bc-item a:hover { color: #ffffff; }

/* separator */
.bc-item + .bc-item::before {
  content: "›";
  display: inline-block;
  opacity: 0.7;
  margin: 0 6px 0 2px;
  color: #cfc7ea;
}

@media (max-width: 900px) {
  .bc-list { font-size: 16px; padding: 10px 0; font-weight: bold; }
}

/* ===== Neon Content Section ===== */
.content-section {
  padding: 40px 0 50px;
}

.content-card {
  position: relative;
  background: rgba(21, 9, 40, 0.88);         /* dark purple glass */
  border-radius: 18px;
  border: 1px solid rgba(124, 58, 237, 0.55); /* base neon edge */
  padding: 22px 22px 26px;
  box-shadow:
    0 0 0 2px rgba(124, 58, 237, 0.22),       /* outer crisp ring */
    0 0 18px rgba(124, 58, 237, 0.35),        /* glow */
    inset 0 0 20px rgba(124, 58, 237, 0.08);  /* inner bloom */
}

/* Extra glow layer */
.content-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  pointer-events: none;
  box-shadow: 0 0 28px rgba(124, 58, 237, 0.25);
}

/* Typography inside the card */
.content-title {
  font-size: 26px;
  margin: 0 0 12px 0;
  color: #ffffff;
}

.content-body {
  color: #cfc7ea;
  font-size: 16px;
}

.content-body p {
  margin: 10px 0 12px;
}

.content-body ul,
.content-body ol {
  margin: 10px 0 12px 18px;
}

/* Mobile tweaks */
@media (max-width: 900px) {
  .content-card {
    padding: 18px 16px 22px;
    border-radius: 16px;
  }
  .content-card::after { border-radius: 18px; }
  .content-title { font-size: 22px; }
}

/* Content links (inside neon content card) */
.content-body a {
  color: #a78bfa;               /* lavender/purple */
  text-decoration: underline;
}
.content-body a:hover {
  color: #c4b5fd;
  text-decoration-thickness: 2px;
}

/* Highlighted text (via <mark>) */
.content-body mark {
  background: #fff066;          /* readable yellow highlight */
  color: #1a0b2e;               /* dark text for contrast */
  padding: 0 .2em;
  border-radius: .2em;
}

/* ===== Portfolio / Models ===== */
.portfolio { padding: 36px 0 50px; }
.section-title { font-size: 26px; margin: 0 0 16px; text-align: center; color: #fff; }

.cards { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

.model-card {
  background: #181233;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow: hidden;
  width: 350px;
  box-shadow: 0 8px 20px rgba(114,9,183,0.18);
}

.model-thumb { display: block; background: #000; }
.model-thumb img {
  width: 350px; height: 460px;
  object-fit: cover; object-position: center; display: block;
}

.model-body { padding: 12px 14px 16px; }
.model-name { margin: 0 0 6px; font-size: 18px; }
.model-name a { color: #fff; text-decoration: none; }
.model-name a:hover { text-decoration: underline; }

.model-meta {
  list-style: none; padding: 0; margin: 0 0 12px;
  display: flex; gap: 10px; flex-wrap: wrap; color: #cfc7ea;
}

.btn-row { display: flex; gap: 10px; }
.btn {
  display: inline-flex; justify-content: center; align-items: center;
  padding: 10px 14px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  text-decoration: none; font-weight: 600;
  transition: opacity .2s ease, transform .05s ease; flex: 1;
}
.btn:active { transform: translateY(1px); }

.btn-call { background: #7c3aed; border-color: #7c3aed; color: #fff; }
.btn-call:hover { opacity: .95; }

.btn-wa { background: #25D366; border-color: #1fb457; color: #0b1a0f; }
.btn-wa:hover { opacity: .95; }

@media (max-width: 900px) {
  .model-card { width: 100%; }
  .model-thumb img { width: 100%; height: auto; }
}

/* === Price + Rating on model cards === */
.price-rating{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px; margin:8px 0 12px;
}
.price{ color:#fff; font-weight:600; }
.price strong{ color:#cfc7ea; font-weight:700; }

.rating{ display:flex; align-items:center; gap:6px; }
.stars{ position:relative; display:inline-block; font-size:16px; line-height:1; }
.stars-bg, .stars-fg{ letter-spacing:2px; font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji"; }
.stars-bg{ color:rgba(255,255,255,0.28); }
.stars-fg{
  position:absolute; left:0; top:0; white-space:nowrap; overflow:hidden;
  color:#facc15; /* gold */
}
.rating-num{ color:#cfc7ea; font-size:14px; }

@media (max-width: 420px){
  .price-rating{ flex-direction:column; align-items:flex-start; gap:6px; }
}

/* ===== Tag Cloud (accessible, list-based) ===== */
#tags-cloud.tags-cloud {
  /* breathing room before footer */
  margin-bottom: clamp(56px, 8vw, 120px);
}

.tags-cloud .section-title {
  margin-bottom: 10px;
}

/* Use real list semantics: <ul class="cloud"><li class="tag-item"><a class="tag">… */
.tags-cloud .cloud {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
}

.tags-cloud .tag-item {
  margin: 0;
  padding: 0;
}

/* Tag pill */
.tags-cloud .tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(124, 58, 237, 0.10); /* purple wash */
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.1;
  transition:
    transform .15s ease,
    box-shadow .2s ease,
    background .2s ease,
    border-color .2s ease,
    color .2s ease;
}

/* Hover/Focus states */
.tags-cloud .tag:hover,
.tags-cloud .tag:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, .25);
  border-color: rgba(124, 58, 237, .55);
}

/* Keyboard focus ring */
.tags-cloud .tag:focus-visible {
  outline: 2px solid var(--purple-500, #7c3aed);
  outline-offset: 2px;
}

@media (max-width: 520px) {
  .tags-cloud .cloud { gap: 10px; }
  .tags-cloud .tag  { padding: 5px 9px; }
}


/* Basic FAQ styles (optional, tweak to taste) */
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; background: rgba(124,58,237,0.06); padding: 10px 12px; }
.faq-q { cursor: pointer; font-weight: 700; color: #fff; }
.faq-a { margin-top: 8px; color: #e9e6f7; }

/* Other Cities */
.other-cities { padding: clamp(28px, 6vw, 48px) 0; }
.other-cities .city-list{
  list-style:none; margin:0; padding:0;
  display:flex; flex-wrap:wrap; gap:12px;
}
.other-cities .city-item{ margin:0; padding:0; }
.other-cities .city-link{
  display:inline-block; padding:6px 10px; border-radius:999px;
  border:1px solid var(--border);
  background: rgba(124,58,237,.10);
  color:#fff; text-decoration:none; font-weight:600; line-height:1.1;
  transition:transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.other-cities .city-link:hover,.other-cities .city-link:focus{
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(124,58,237,.25);
  border-color: rgba(124,58,237,.55);
}

/* ===== Footer (updates) ===== */
.site-footer {
  margin-top: 56px;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(124,58,237,.18), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(167,139,250,.12), transparent 60%),
    linear-gradient(180deg, rgba(26,11,46,.95), rgba(17,9,33,.98));
  color: var(--ink);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 28px;
  padding: 36px 0;
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }

.f-col { min-width: 0; }

.f-brand {
  display: inline-block;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: .2px;
  color: #fff;
  text-decoration: none;
}
.f-brand span { color: var(--purple-500); }

.f-tag { margin: 8px 0 16px; color: var(--ink-dim); font-size: 14px; }

.f-badges { display:flex; gap:8px; margin:12px 0 0; padding:0; list-style:none; flex-wrap:wrap; }
.f-badges li {
  font-size: 12px; color: var(--ink-dim);
  border: 1px dashed var(--border);
  padding: 6px 8px; border-radius: 8px;
  background: rgba(255,255,255,0.03);
}

.f-title { margin: 2px 0 8px; font-size: 15px; font-weight: 700; color: #e9e4ff; letter-spacing: .3px; }
.f-list { list-style: none; margin: 0; padding: 0; }
.f-list li { margin: 8px 0; }
.f-list a { color: #cfc7ea; text-decoration: none; border-bottom: 1px dashed transparent; }
.f-list a:hover { color: #ffffff; border-bottom-color: rgba(255,255,255,.25); }

/* Footer Tag Cloud (no ARIA roles on anchors) */
.tag-cloud--footer { margin-top: 6px; }
.tag-cloud--footer .tag {
  display: inline-block;
  margin: 6px 6px 0 0;
  padding: 6px 10px;
  font-size: 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  color: #ded9ff;
  background: rgba(124,58,237,0.08);
}
.tag-cloud--footer .tag:hover {
  background: rgba(124,58,237,0.18);
  color: #fff;
}

/* Bottom bar (no back-to-top button) */
.footer-bottom { border-top: 1px solid var(--border); background: rgba(0,0,0,0.15); }
.fb-inner { display: flex; align-items: center; gap: 12px; padding: 12px 0; }
.fb-inner p { margin: 0; color: #cfc7ea; font-size: 14px; }
.fb-links { margin-left: auto; padding: 0; list-style: none; display: flex; gap: 12px; }
.fb-links a { color: #bdb4e8; text-decoration: none; font-size: 14px; }
.fb-links a:hover { color: #fff; }

@media (max-width: 720px) {
  .fb-inner { flex-wrap: wrap; }
  .fb-links { margin-left: 0; }
}

/* ===== Floating Call & WhatsApp ===== */
.float-btn {
  position: fixed;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0,0,0,.35), 0 8px 18px rgba(124,58,237,.25);
  z-index: 1040; /* above content & footer */
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .15s ease, box-shadow .15s ease, opacity .2s ease;
}
.float-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,.45), 0 10px 22px rgba(124,58,237,.32); }

.float-call { left: 16px; background: var(--purple-600); }
.float-wa   { right: 16px; background: #25D366; border-color: rgba(0,0,0,.15); }

@media (max-width: 740px) {
  .float-btn { bottom: 16px; width: 52px; height: 52px; }
  .float-call { left: 12px; }
  .float-wa   { right: 12px; }
}

/* Avoid overlap with any sticky cookie bars or chat widgets if added later */
body.has-sticky-bottom .float-btn { bottom: 72px; }

/* ===== Topbar ===== */
.topbar{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000; /* above site header */
  background: #0b0916; /* dark to match theme */
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #eae7ff;
  font-size: 14px;
}
.topbar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 12px;
}
.topbar-left{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar svg{ opacity: .85 }
.topbar-link{
  color: #d5ccff;
  text-decoration: none;
}
.topbar-link:hover{ color: #ffffff; text-decoration: underline; }

/* push site down so the fixed bar doesn't overlap */
body{ padding-top: 38px; }

/* If your header is also fixed, increase padding-top accordingly:
   body{ padding-top: calc(38px + var(--site-header-height, 64px)); } */

/* ===== Content/Article Typography ===== */
.content-section .content-title{
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
  margin: 0 0 16px;
}

.content-card .content-body{
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
}

.content-card .content-body p{
  margin: 0 0 14px;         /* space between paragraphs */
}

.content-card .content-body h2,
.content-card .content-body h3,
.content-card .content-body h4{
  line-height: 1.3;
  margin: 24px 0 12px;      /* space above headings + a bit below */
}

.content-card .content-body h2{ font-size: clamp(22px, 2vw, 28px); }
.content-card .content-body h3{ font-size: clamp(20px, 1.8vw, 24px); }
.content-card .content-body h4{ font-size: clamp(18px, 1.6vw, 20px); }

.content-card .content-body ul,
.content-card .content-body ol{
  padding-left: 1.2rem;
  margin: 0 0 14px;
}

.content-card .content-body li{ margin: 6px 0; }

.content-card .content-body > :last-child{ margin-bottom: 0; } /* tidy end */

/* Make editor bolds visibly bold on site */
.content-card .content-body strong,
.content-card .content-body b,
.faq-section .faq-a strong,
.faq-section .faq-a b {
  font-weight: 700;
}

/* ========= Purple table theme (no CSS variables) ========= */

/* wrap so wide tables can scroll on small screens */
.table-wrap{
  background:transparent;
  border-radius:14px;
  overflow:auto;            /* mobile horizontal scroll */
  box-shadow: 0 10px 26px rgba(124,58,237,.25);
  margin: 22px 0;
}

/* base table */
.tbl{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  background:#150f2a;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  overflow:hidden;
  font-size:16px;
  line-height:1.45;
}

/* head */
.tbl thead th{
  background:#7c3aed;
  color:#fff;
  text-align:left;
  font-weight:700;
  padding:12px 14px;
  border-right:1px solid rgba(255,255,255,.15);
  letter-spacing:.2px;
}
.tbl thead th:last-child{border-right:0}

/* body cells */
.tbl tbody td{
  padding:12px 14px;
  color:#eee;
  border-top:1px solid rgba(255,255,255,.12);
  border-right:1px solid rgba(255,255,255,.12);
  background:#1c1537;
}
.tbl tbody tr:nth-child(odd) td{ background:#171232; }
.tbl tbody td:last-child{ border-right:0; }

/* row hover */
.tbl tbody tr:hover td{
  background:rgba(124,58,237,.10);
}

/* small caption below table title */
.tbl-caption{
  text-align:left;
  color:#cfc7ea;
  font-size:14px;
  margin:8px 4px 0;
}

/* responsive font sizing */
@media (max-width: 640px){
  .tbl{ font-size:15px; }
}

/* ========= Editor output polish (spacing + real bold) ========= */
.content-body h2,
.content-body h3,
.content-body h4{
  margin: 1.25rem 0 .5rem;
  line-height:1.2;
}
.content-body p{ margin: .75rem 0 0; }
.content-body ul,
.content-body ol{ margin: .75rem 0 0 1.25rem; }
.content-body li{ margin:.35rem 0; }

/* make bold actually look bold */
.content-body strong,
.content-body b{
  font-weight: 800;
}

/* headings inside the “below portfolio” card too */
.content-card .content-body strong,
.content-card .content-body b{
  font-weight: 800;
}

/* ===== Map editor-inserted tables to your theme ===== */
/* Admin sanitizer wraps tables as <table class="prose-table"> */
.prose-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  background:#150f2a;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  overflow:hidden;
  font-size:16px;
  line-height:1.45;
}
.prose-table thead th{
  background:#2a2052;                 /* solid header */
  color:#fff;
  text-align:left;
  font-weight:700;
  padding:12px 14px;
  border-right:1px solid rgba(255,255,255,.15);
  letter-spacing:.2px;
}
.prose-table thead th:last-child{ border-right:0; }
.prose-table tbody td{
  padding:12px 14px;
  color:#eee;
  border-top:1px solid rgba(255,255,255,.12);
  border-right:1px solid rgba(255,255,255,.12);
  background:#1c1537;
}
.prose-table tbody tr:nth-child(odd) td{ background:#171232; }
.prose-table tbody td:last-child{ border-right:0; }
.prose-table tbody tr:hover td{ background:rgba(124,58,237,.10); }

/* (Removed duplicate “sticky topbar” override that changed position) */
