:root{
  --bg:#f6f7fb;
  --panel:#ffffff;
  --border:#e7e9f1;
  --text:#111827;
  --muted:#6b7280;
  --shadow:0 6px 18px rgba(17,24,39,.06), 0 1px 2px rgba(17,24,39,.06);

  --accent:#8bc34a;        /* HV green */
  --accent2:#a6d96a;
  --accent-soft:#eef7df;

  --btn-dark:#3f3f46;
  --btn-dark-hover:#2f2f35;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  color:var(--text);
  background:var(--bg);
}
a{color:inherit;text-decoration:none}
a:hover{text-decoration:underline}

.app-shell{display:flex;min-height:100vh}
.sidebar{
  width:260px;
  background:var(--panel);
  border-right:1px solid var(--border);
  display:flex;
  flex-direction:column;
}
.sb-top{padding:16px 16px 10px}
.logo{
  display:flex;align-items:center;gap:10px;
  font-weight:900;letter-spacing:.02em;
}
.logo-badge{
  width:38px;height:38px;border-radius:12px;
  border:1px solid var(--border);
  display:grid;place-items:center;
  box-shadow:0 1px 2px rgba(0,0,0,.04);
  background:#fff;
}
.logo small{display:block;color:var(--muted);font-weight:700;margin-top:2px;letter-spacing:0}
.sb-dd{
  margin-top:14px;
  background:#f8fafc;
  border:1px solid var(--border);
  border-radius:12px;
  padding:10px;
}
.sb-dd form{display:flex;gap:8px;align-items:center}
.sb-dd select{
  flex:1;border:0;background:transparent;outline:none;
  font-weight:800;color:#111827;
}

.sb-nav{padding:6px 10px;display:flex;flex-direction:column;gap:6px}
.nav-item{
  display:flex;align-items:center;gap:10px;
  padding:10px 12px;
  border-radius:12px;
  color:#111827;
  font-weight:800;
  font-size:14px;
}
.nav-item svg{width:18px;height:18px;color:#6b7280}
.nav-item:hover{background:#f3f4f6;text-decoration:none}
.nav-item.active{
  background:linear-gradient(90deg,var(--accent) 0%, var(--accent2) 100%);
  color:#fff;
  box-shadow:0 6px 16px rgba(139,195,74,.25);
}
.nav-item.active svg{color:#fff}
.badge{
  margin-left:auto;
  display:inline-flex;align-items:center;justify-content:center;
  min-width:22px;height:18px;
  padding:0 6px;border-radius:999px;
  font-size:12px;font-weight:900;
  border:1px solid rgba(0,0,0,.06);
  background:#fff;
  color:#111827;
}
.badge.green{
  background:rgba(139,195,74,.15);
  color:#2f5b12;
  border-color:rgba(139,195,74,.35);
}

.sb-bottom{
  margin-top:auto;
  padding:14px 16px;
  border-top:1px solid var(--border);
  display:flex;align-items:center;justify-content:space-between;gap:10px;
}
.userchip{
  display:flex;align-items:center;gap:10px;
  background:#f8fafc;border:1px solid var(--border);
  padding:10px 12px;border-radius:14px;flex:1;
}
.avatar{
  width:34px;height:34px;border-radius:999px;
  background:rgba(139,195,74,.25);
  display:grid;place-items:center;
  font-weight:900;color:#2f5b12;
}
.userchip .meta{line-height:1.1}
.userchip .meta b{display:block;font-size:13px}
.userchip .meta span{display:block;font-size:12px;color:var(--muted);font-weight:800}
.iconbtn{
  width:40px;height:40px;border-radius:12px;
  border:1px solid var(--border);
  background:#fff;cursor:pointer;
  display:grid;place-items:center;
}
.iconbtn:hover{background:#f3f4f6}

.main{flex:1;display:flex;flex-direction:column}
.topbar{
  height:64px;
  display:flex;align-items:center;justify-content:flex-end;
  padding:0 24px;
}
.pill{
  display:inline-flex;align-items:center;gap:8px;
  border:1px solid var(--border);
  background:#fff;
  padding:10px 12px;border-radius:12px;
  font-weight:900;font-size:13px;color:#111827;
}
.pill svg{width:16px;height:16px;color:#6b7280}

.container{max-width:1200px;margin:0 auto;padding:0 24px 24px}
.page-title{margin:6px 0 6px;font-size:28px;font-weight:800;letter-spacing:-.02em}
.page-sub{margin:0 0 14px;color:var(--muted);font-weight:800;font-size:13px}

.card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:var(--shadow);
}
.card .hd{padding:16px 18px;border-bottom:1px solid var(--border);display:flex;align-items:center;justify-content:space-between;gap:12px}
.card .bd{padding:16px 18px}

.grid{display:grid;gap:14px}
.grid2{grid-template-columns:1fr 1fr}
.grid3{grid-template-columns:1fr 1fr 1fr}
.grid4{grid-template-columns:repeat(4, minmax(0,1fr))}
@media(max-width:1100px){.grid4{grid-template-columns:1fr 1fr}}
@media(max-width:900px){
  .sidebar{display:none}
  .container{padding:0 14px 14px}
  .topbar{padding:0 14px}
  .grid2,.grid3,.grid4{grid-template-columns:1fr}
}

.muted{color:var(--muted);font-size:13px;font-weight:800}
.small{font-size:12px}
.row{display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.hr{height:1px;background:var(--border);margin:12px 0}

.inp,.sel,.ta{
  width:100%;
  border:1px solid var(--border);
  border-radius:12px;
  padding:11px 12px;
  font-size:14px;
  background:#fff;
  outline:none;
}
.ta{min-height:110px;resize:vertical}

.btn{
  border:1px solid var(--border);
  background:#fff;
  border-radius:12px;
  padding:10px 12px;
  font-weight:900;
  font-size:14px;
  cursor:pointer;
  display:inline-flex;align-items:center;gap:8px;
}
.btn:hover{background:#f3f4f6}
.btn.dark{
  background:var(--btn-dark);
  border-color:var(--btn-dark);
  color:#fff;
}
.btn.dark:hover{background:var(--btn-dark-hover)}
.btn.green-outline{
  border-color:rgba(139,195,74,.55);
  background:#fff;
  color:#2f5b12;
}
.btn.green-outline:hover{background:var(--accent-soft)}

.table{width:100%;border-collapse:collapse}
.table th,.table td{padding:12px 10px;border-bottom:1px solid var(--border);text-align:left;font-size:14px}
.table th{color:var(--muted);font-size:12px;text-transform:uppercase;letter-spacing:.02em}

.flash{
  padding:12px 14px;border-radius:14px;border:1px solid var(--border);background:#fff;
}
.flash.ok{border-color:rgba(34,197,94,.35);background:#f0fdf4}
.flash.err{border-color:rgba(239,68,68,.35);background:#fff1f2}

.stat{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:16px 18px;
}
.stat .n{font-size:26px;font-weight:800;letter-spacing:-.02em}
.stat .lbl{color:var(--muted);font-size:13px;font-weight:900}
.iconbubble{
  width:48px;height:48px;border-radius:18px;
  display:grid;place-items:center;
  background:#eef2ff;border:1px solid var(--border);
}
.iconbubble.orange{background:#fff3e8}
.iconbubble.blue{background:#eaf2ff}
.iconbubble.green{background:#eafaf0}
.iconbubble.purple{background:#f2eaff}
.iconbubble svg{width:22px;height:22px;color:#111827}

.listitem{
  display:flex;gap:14px;align-items:flex-start;
  padding:16px 18px;
}
.listitem:hover{background:#fbfbfd}
.listitem + .listitem{border-top:1px solid var(--border)}
.li-title{font-weight:800}
.li-sub{margin-top:4px;color:var(--muted);font-size:13px;font-weight:800}
.pills{display:flex;gap:8px;align-items:center;flex-wrap:wrap;margin-top:10px}
.pilltag{
  font-size:12px;font-weight:900;
  padding:4px 10px;border-radius:999px;
  border:1px solid var(--border);background:#fff;color:#111827;
}
.pilltag.green{background:rgba(139,195,74,.15);border-color:rgba(139,195,74,.35);color:#2f5b12}
.pilltag.gray{background:#f3f4f6}

/* --- Tasks UI (Base44-like) --- */
.toolbar{
  display:flex;gap:12px;align-items:center;justify-content:space-between;flex-wrap:wrap;
  margin:10px 0 14px;
}
.searchbar{
  display:flex;gap:10px;align-items:center;flex:1;
  background:#fff;border:1px solid var(--border);border-radius:14px;
  padding:10px 12px;
  box-shadow:0 1px 2px rgba(17,24,39,.04);
  min-width:260px;
}
.searchbar input{
  border:0;outline:none;background:transparent;width:100%;
  font-weight:900;font-size:14px;color:#111827;
}
.searchbar svg{width:18px;height:18px;color:#6b7280}
.tabs{
  display:flex;gap:8px;align-items:center;flex-wrap:wrap;
  background:#fff;border:1px solid var(--border);border-radius:14px;padding:6px;
  box-shadow:0 1px 2px rgba(17,24,39,.04);
}
.tab{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 10px;border-radius:12px;
  font-weight:800;font-size:13px;color:#111827;
  border:1px solid transparent;
}
.tab:hover{background:#f3f4f6;text-decoration:none}
.tab.active{
  background:rgba(139,195,74,.18);
  border-color:rgba(139,195,74,.35);
  color:#2f5b12;
}
.tab .count{
  min-width:18px;height:18px;border-radius:999px;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:12px;font-weight:800;
  background:#f3f4f6;color:#111827;
}
.tab.active .count{background:#fff;border:1px solid rgba(139,195,74,.25)}
.taskgrid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}
@media(max-width:1100px){.taskgrid{grid-template-columns:repeat(2, minmax(0,1fr));}}
@media(max-width:900px){.taskgrid{grid-template-columns:1fr;}}
.taskcard{
  background:#fff;border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:14px 14px 12px;
  display:flex;flex-direction:column;gap:10px;
}
.taskcard:hover{transform:translateY(-1px);transition:.12s ease; }
.taskcard .top{display:flex;align-items:flex-start;gap:12px}
.taskicon{
  width:44px;height:44px;border-radius:18px;
  background:rgba(139,195,74,.18);
  border:1px solid rgba(139,195,74,.35);
  display:grid;place-items:center;
  flex:0 0 auto;
}
.taskicon svg{width:22px;height:22px;color:#2f5b12}
.tasktitle{font-weight:800;line-height:1.15}
.taskmeta{margin-top:4px;color:var(--muted);font-size:12px;font-weight:900}
.taskdesc{color:#374151;font-size:13px;font-weight:700;line-height:1.35;white-space:pre-wrap}
.taskfooter{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:auto}
.statuspill{
  font-size:12px;font-weight:800;
  padding:4px 10px;border-radius:999px;
  border:1px solid var(--border);
  background:#f3f4f6;color:#111827;
}
.statuspill.open{background:#fff3e8}
.statuspill.work{background:#eaf2ff}
.statuspill.offer{background:#f2eaff}
.statuspill.done{background:#eafaf0}

/* auth */
input.inp:-webkit-autofill,
input.inp:-webkit-autofill:hover,
input.inp:-webkit-autofill:focus{
  -webkit-text-fill-color: var(--text);
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  transition: background-color 5000s ease-in-out 0s;
}

/* ===== PREMIUM LOGIN ===== */

body {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5f3e8 100%);
}

.premium-card {
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-radius: 22px;
  transition: all .3s ease;
}

.premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.premium-logo {
  max-width: 260px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.15));
  animation: fadeIn 1s ease forwards;
}

.btn.dark {
  transition: all .25s ease;
}

.btn.dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.inp:focus {
  border-color: #8bc34a !important;
  box-shadow: 0 0 0 3px rgba(139,195,74,0.25);
}

@keyframes fadeIn {
  from { opacity:0; transform:translateY(-10px); }
  to { opacity:1; transform:translateY(0); }
}


/* ===== LUXURY LOGIN (Apple/Stripe/Notion-ish) ===== */
/* Subtle, high-end white background */
body.lux-login,
.lux-login body {
  background:
    radial-gradient(1200px 600px at 10% 0%, rgba(139,195,74,0.10) 0%, rgba(139,195,74,0.0) 55%),
    radial-gradient(900px 500px at 90% 15%, rgba(59,130,246,0.06) 0%, rgba(59,130,246,0.0) 60%),
    #f7f8fb;
}

/* center wrapper */
.lux-wrap{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:56px 20px;
}

/* high-end card */
.lux-card{
  max-width:520px;
  width:100%;
  text-align:center;
  padding:54px 44px 40px;
  background:rgba(255,255,255,0.86);
  border:1px solid rgba(15,23,42,0.08);
  border-radius:26px;
  box-shadow:
    0 30px 80px rgba(2,6,23,0.10),
    0 2px 0 rgba(255,255,255,0.8) inset;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position:relative;
}

/* subtle top highlight */
.lux-card:before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:26px;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(255,255,255,0.90), rgba(255,255,255,0.35));
  mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  padding:1px;
  box-sizing:border-box;
  opacity:.45;
}

/* logo */
.lux-logo{
  max-width:280px;
  width:100%;
  height:auto;
  filter: drop-shadow(0 10px 22px rgba(2,6,23,0.14));
}

/* typography tweaks */
.lux-title{
  font-size:30px;
  font-weight:800;
  letter-spacing:-0.02em;
  margin:18px 0 8px;
  color:#0f172a;
}
.lux-sub{
  font-size:14px;
  font-weight:800;
  color:#475569;
  margin:0 0 26px;
}

/* form */
.lux-form{
  text-align:left;
  display:grid;
  gap:16px;
}
.lux-label{
  font-size:12px;
  font-weight:800;
  color:#334155;
  margin-bottom:6px;
}
.lux-input{
  width:100%;
  border-radius:16px;
  padding:12px 14px;
  border:1px solid rgba(15,23,42,0.10);
  background:rgba(255,255,255,0.92);
  box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset;
  font-weight:850;
}
.lux-input:focus{
  outline:none;
  border-color: rgba(15,23,42,0.22) !important;
  box-shadow: 0 0 0 4px rgba(59,130,246,0.14);
}

/* button (Stripe-ish) */
.lux-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  border-radius:18px;
  padding:12px 14px;
  font-weight:800;
  letter-spacing:-0.01em;
  background:#0b1220;
  color:#fff;
  border:1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 26px rgba(2,6,23,0.20);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.lux-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(2,6,23,0.26);
  filter: brightness(1.03);
}
.lux-btn:active{
  transform: translateY(0px);
}

/* footer links */
.lux-link{
  display:inline-block;
  margin-top:18px;
  color:#475569;
  font-weight:900;
  text-decoration:none;
}
.lux-link:hover{
  color:#0f172a;
  text-decoration:underline;
}

.lux-foot{
  margin-top:30px;
  color:#64748b;
  font-size:12px;
  font-weight:850;
}

/* Remove browser autofill yellow */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus{
  -webkit-text-fill-color:#0f172a;
  transition: background-color 9999s ease-in-out 0s;
  box-shadow: 0 0 0px 1000px rgba(255,255,255,0.92) inset !important;
  border:1px solid rgba(15,23,42,0.10);
}


/* Sidebar logo (image) */
.logo.logo-img{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:8px 6px 12px;
}
.sb-logo-img{
  width: 210px;
  max-width: 100%;
  height: auto;
  display:block;
  filter: drop-shadow(0 8px 18px rgba(2,6,23,0.12));
}
@media (max-width: 900px){
  .sb-logo-img{ width: 190px; }
}


/* Tasks: completed -> visually subdued */
.taskcard.is-done{
  opacity: .72;
  filter: grayscale(.18);
  box-shadow: none !important;
}
.taskcard.is-done:hover{
  opacity: .82;
  filter: grayscale(.08);
}
.taskcard.is-done .tasktitle{ color: #334155; }
.taskcard.is-done .taskmeta{ color: #64748b; }
.taskcard.is-done .pilltag.done{
  opacity:.75;
}


/* Assign users (Dashboards) - premium list */
.assign-row{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:12px 14px;
  border:1px solid rgba(15,23,42,0.08);
  border-radius:16px;
  background:#fff;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
.assign-row:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(2,6,23,0.08);
  background: rgba(255,255,255,0.92);
}
.assign-row.is-assigned{
  border-color: rgba(139,195,74,0.28);
  background: rgba(139,195,74,0.06);
}
.assign-row .assign-cb{
  margin-top:3px;
  transform: scale(1.05);
}
.assign-top{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.assign-name{
  font-weight:800;
}
.assign-email{
  margin-top:2px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  max-width: 100%;
}


/* Compact admin lists (Users/Dashboards) */
.mini-details{
  border:1px solid rgba(15,23,42,0.08);
  border-radius:18px;
  background:#fff;
  overflow:hidden;
}
.mini-details summary{
  list-style:none;
}
.mini-details summary::-webkit-details-marker{ display:none; }
.mini-summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 14px;
  cursor:pointer;
  transition: background .12s ease;
}
.mini-summary:hover{
  background: rgba(15,23,42,0.02);
}
.mini-left{ min-width:0; }
.mini-title{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  font-weight:800;
}
.mini-right{
  flex:0 0 auto;
}
.mini-body{
  padding:12px 14px 14px;
  border-top:1px solid rgba(15,23,42,0.06);
  background: rgba(255,255,255,0.9);
}


/* Tasks: collapse completed in tasks view */
.done-fold{
  border:1px solid rgba(15,23,42,0.08);
  border-radius:18px;
  background:rgba(255,255,255,0.9);
  overflow:hidden;
}
.done-fold summary{ list-style:none; }
.done-fold summary::-webkit-details-marker{ display:none; }
.done-fold-sum{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  cursor:pointer;
  user-select:none;
}
.done-fold-sum:hover{
  background: rgba(15,23,42,0.02);
}
.done-fold-body{
  padding: 12px 14px 14px;
  border-top:1px solid rgba(15,23,42,0.06);
}

/* === Fine Luxury Typography v1 === */
:root{
  --text: #0f172a;
  --muted: #64748b;
  --border: rgba(15,23,42,0.06);
  --border2: rgba(15,23,42,0.08);
  --shadow1: 0 8px 24px rgba(2,6,23,0.05);
  --shadow2: 0 10px 26px rgba(2,6,23,0.08);
}

html, body{
  font-weight: 400;
  letter-spacing: .01em;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,h2,h3,h4,.h1,.h2,.h3,.title{
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Make most "heavy" labels calmer */
strong, b{
  font-weight: 600;
}

.muted, .small.muted{
  color: var(--muted);
}

/* Cards */
.card{
  border: 1px solid var(--border);
  box-shadow: var(--shadow1);
}

/* Details/compact rows */
.mini-details,
.done-fold{
  border: 1px solid var(--border);
}
.mini-summary:hover,
.done-fold-sum:hover{
  background: rgba(15,23,42,0.018);
}

/* Buttons: lighter, cleaner */
.btn{
  font-weight: 500;
  border: 1px solid var(--border2);
  background: #fff;
}
.btn:hover{
  box-shadow: var(--shadow2);
  transform: translateY(-1px);
}
.btn.dark{
  font-weight: 600;
}

/* Inputs */
.inp, .sel, .ta{
  border: 1px solid var(--border2);
}
.inp::placeholder, .ta::placeholder{
  color: rgba(100,116,139,0.9);
}

/* Pills / tags */
.pilltag{
  font-size: 12px;
  font-weight: 500;
  padding: 3px 8px;
  border: 1px solid var(--border);
  background: rgba(15,23,42,0.03);
}
.pilltag.green{
  background: rgba(139,195,74,0.10);
  border-color: rgba(139,195,74,0.20);
}

/* Tables */
.tbl thead th{
  border-bottom: 1px solid var(--border);
}
.tbl tbody td{
  border-bottom: 1px solid var(--border);
}


/* Reports: subtle done rows */
.row-done{ opacity:.72; }


/* Reports: dashboard grouping row */
.dash-group td{
  background: rgba(15,23,42,0.02);
  border-top: 1px solid rgba(15,23,42,0.06);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}


/* Task status accents (new) */
.badge.wait{opacity:.9;}
.badge.exec{opacity:.9;}


/* Status badges (Premium, subtle) */
.badge{
  letter-spacing:.02em;
  backdrop-filter:saturate(140%) blur(4px);
  box-shadow: 0 1px 0 rgba(15,23,42,0.06);
}
.badge.open{
  background: rgba(59,130,246,0.08);
  border-color: rgba(59,130,246,0.18);
  color: rgba(30,64,175,0.95);
}
.badge.work{
  background: rgba(245,158,11,0.10);
  border-color: rgba(245,158,11,0.22);
  color: rgba(146,64,14,0.95);
}
.badge.wait{
  background: rgba(168,85,247,0.10);
  border-color: rgba(168,85,247,0.22);
  color: rgba(88,28,135,0.95);
}
.badge.exec{
  background: rgba(16,185,129,0.10);
  border-color: rgba(16,185,129,0.22);
  color: rgba(6,95,70,0.95);
}
.badge.done{
  background: rgba(17,24,39,0.06);
  border-color: rgba(17,24,39,0.12);
  color: rgba(17,24,39,0.62);
}
.row-done{opacity:.72}


/* Comment meta + role icon */
.comment-meta{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.comment-ico{
  width:18px;height:18px;display:inline-flex;align-items:center;justify-content:center;
  border-radius:999px;
  font-size:10px;
  border:1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.9);
}
.comment-ico.user{
  color: rgba(88,28,135,0.95);
  background: rgba(168,85,247,0.10);
  border-color: rgba(168,85,247,0.22);
}
.comment-ico.admin{
  color: rgba(6,95,70,0.95);
  background: rgba(16,185,129,0.10);
  border-color: rgba(16,185,129,0.22);
}
.comment-role{
  margin-left:2px;
  padding:2px 8px;
  border-radius:999px;
  font-size:11px;
  border:1px solid rgba(15,23,42,0.08);
  background: rgba(15,23,42,0.03);
  color: rgba(17,24,39,0.65);
}


/* Billing run: results table usability */
.tbl{
  width: 100%;
}
.tbl thead th{
  position: sticky;
  top: 0;
  background: var(--panel);
  z-index: 2;
}
/* Make the results section breathe a bit when stacked */
.results-box{
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
  padding: 14px;
}
