/* ============================================================
   CareerGuru Portal — Agent Cockpit design system
   Post-login app chrome (marketing site uses its own styles)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:   #0B1220;
  --navy2:  #152238;
  --ink:    #0B1220;
  --blue:   #0E7C86;
  --blue-l: #14A3AE;
  --accent: #0E7C86;
  --white:  #ffffff;
  --gray:   #64748B;
  --gray-d: #475569;
  --gray-l: #F4F6F8;
  --gray-m: #E8ECF0;
  --ice:    #EEF2F6;
  --text:   #0B1220;
  --border: #E2E8F0;
  --surface: #ffffff;
  --muted:   #64748B;
  --green:  #159947;
  --green-l:#E6F7ED;
  --amber:  #C27A0E;
  --amber-l:#FEF3E0;
  --red:    #D64545;
  --red-l:  #FDECEC;
  --blue-bg:#E7F5F6;
  --shadow-sm: 0 1px 2px rgba(11,18,32,.05);
  --shadow:    0 4px 16px rgba(11,18,32,.07);
  --shadow-lg: 0 12px 36px rgba(11,18,32,.12);
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif;
  --rail: 248px;
  --topbar-h: 56px;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--gray-l); color: var(--text); line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { font-family: var(--font-display); letter-spacing: -.02em; color: var(--navy); font-weight: 700; }

@keyframes page-enter { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.content > * { animation: page-enter .18s ease-out both; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 18px; border-radius: var(--radius-sm); font-size: .875rem; font-weight: 650;
  font-family: inherit; cursor: pointer; border: 1px solid transparent;
  transition: background .15s, border-color .15s, color .15s, box-shadow .15s; white-space: nowrap;
}
.btn:disabled { opacity: .55; cursor: not-allowed; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 1px 2px rgba(14,124,134,.25); }
.btn-primary:hover:not(:disabled) { background: #0b6b74; }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover:not(:disabled) { background: var(--navy2); }
.btn-outline { background: #fff; color: var(--navy); border-color: var(--border); }
.btn-outline:hover:not(:disabled) { border-color: #cbd5e1; background: var(--ice); }
.btn-ghost { background: transparent; color: var(--gray); }
.btn-ghost:hover:not(:disabled) { background: var(--ice); color: var(--navy); }
.btn-danger { background: #fff; color: var(--red); border-color: #fecaca; }
.btn-danger:hover:not(:disabled) { background: var(--red-l); }
.btn-block { width: 100%; }
.btn-sm { padding: 6px 12px; font-size: .8rem; }
.btn-lg { padding: 13px 26px; font-size: .95rem; }

/* ── Cards ── */
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.card-pad { padding: 22px; }
.card-head { padding: 16px 22px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.card-head h3 { font-size: 1rem; }

/* ── Forms ── */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .8rem; font-weight: 650; color: var(--navy); margin-bottom: 6px; }
.input, .select, textarea.input {
  width: 100%; padding: 11px 13px; font-size: .9rem; font-family: inherit;
  color: var(--text); background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius-sm); transition: border-color .15s, box-shadow .15s; outline: none;
}
.input:focus, .select:focus, textarea.input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(14,124,134,.14); }
.input::placeholder { color: #94a3b8; }
.input-group { position: relative; }
.input-group .toggle-eye { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); cursor: pointer; color: var(--gray); font-size: .9rem; background: none; border: none; }

/* ── Badges ── */
.badge { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 999px; font-size: .72rem; font-weight: 700; letter-spacing: .02em; }
.badge-green { background: var(--green-l); color: var(--green); }
.badge-amber { background: var(--amber-l); color: var(--amber); }
.badge-red   { background: var(--red-l); color: var(--red); }
.badge-blue  { background: var(--blue-bg); color: var(--blue); }
.badge-gray  { background: var(--gray-m); color: var(--gray-d); }

/* ── Auth (login/signup) ── */
.auth-wrap { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-aside {
  background: var(--navy); color: #fff; padding: 52px 52px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-start;
}
.auth-aside .auth-aside-inner { margin-top: 48px; margin-bottom: 0; }
.auth-aside > :last-child { margin-top: auto; }
.auth-aside::before {
  content:''; position:absolute; width:560px; height:560px; border-radius:50%;
  background: radial-gradient(circle, rgba(0,153,204,.32), transparent 68%);
  top:-170px; right:-170px; filter: blur(64px);
  animation: auth-orb1 13s ease-in-out infinite;
}
.auth-aside::after {
  content:''; position:absolute; width:460px; height:460px; border-radius:50%;
  background: radial-gradient(circle, rgba(0,90,150,.26), transparent 68%);
  bottom:-150px; left:-130px; filter: blur(52px);
  animation: auth-orb2 18s ease-in-out infinite;
}
@keyframes auth-orb1 {
  0%,100% { transform: scale(1) translate(0,0); }
  50%     { transform: scale(1.2) translate(-28px,22px); }
}
@keyframes auth-orb2 {
  0%,100% { transform: scale(1) translate(0,0); }
  50%     { transform: scale(1.15) translate(22px,-28px); }
}
#aside-canvas { position:absolute; inset:0; width:100%; height:100%; pointer-events:none; opacity:.4; z-index:0; }
.auth-aside-inner { position: relative; z-index: 1; }
.auth-aside h2 { color: #fff; font-size: clamp(1.8rem, 2.6vw, 2.6rem); line-height: 1.1; margin-bottom: 18px; }
.auth-aside h2 span { color: var(--blue-l); }
.auth-aside p { color: rgba(255,255,255,.62); font-size: 1rem; max-width: 420px; line-height: 1.75; }
.auth-points { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.auth-point { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,.82); font-size: .9rem; line-height: 1.5; }
.auth-point .tick {
  width: 20px; height: 20px; border-radius: 50%; background: rgba(0,153,204,.2);
  border: 1px solid rgba(0,153,204,.4); color: var(--blue-l); font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center; font-size: .7rem; flex-shrink: 0; margin-top: 1px;
}
.auth-brand { display: flex; align-items: center; gap: 10px; position: relative; z-index: 1; }
.auth-brand img { height: 40px; width: auto; border-radius: 9px; }
.aside-social-proof { display:flex; gap:24px; margin-top:32px; padding-top:24px; border-top:1px solid rgba(255,255,255,.1); position:relative; z-index:1; }
.asp-n { font-family:var(--font-display); font-size:1.5rem; font-weight:800; color:white; line-height:1; }
.asp-l { font-size:.66rem; color:rgba(255,255,255,.42); margin-top:3px; text-transform:uppercase; letter-spacing:.05em; }

/* Card entry animation */
@keyframes card-rise { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:none} }
/* View slide-in */
@keyframes view-slide-in { from{opacity:0;transform:translateX(14px)} to{opacity:1;transform:none} }
.auth-view-animate { animation: view-slide-in .32s cubic-bezier(.22,1,.36,1) both; }
/* Button loading spinner */
@keyframes auth-spin { to{transform:rotate(360deg)} }
.btn-loading { position:relative; pointer-events:none; }
.btn-loading::after {
  content:''; display:inline-block; width:13px; height:13px;
  border:2px solid rgba(255,255,255,.35); border-top-color:white;
  border-radius:50%; animation:auth-spin .7s linear infinite;
  margin-left:8px; vertical-align:middle;
}
/* Input icon wrapper */
.input-icon-wrap { position:relative; }
.input-icon-wrap .input { padding-left: 38px; }
.input-icon-wrap .field-icon {
  position:absolute; left:11px; top:50%; transform:translateY(-50%);
  color:var(--muted); pointer-events:none; transition:color .2s;
}
.input-icon-wrap .input:focus + .field-icon { color:var(--blue); }

.auth-main {
  display: flex; align-items: center; justify-content: center;
  padding: 40px 24px;
  background: linear-gradient(145deg, #eef8f9 0%, #f4f6f8 55%, #e8f0f2 100%);
  min-height: 100vh;
}
.auth-card {
  width: 100%; max-width: 440px;
  background: white; border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  animation: card-rise .45s cubic-bezier(.22,1,.36,1) both;
}
.auth-card h1 { font-size: 1.75rem; margin-bottom: 6px; }
.auth-sub { color: var(--gray); font-size: .9rem; margin-bottom: 24px; }
.oauth-row { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.oauth-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 11px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fff;
  font-size: .88rem; font-weight: 600; color: var(--navy); cursor: pointer; transition: all .15s; width: 100%;
}
.oauth-btn:hover { background: var(--ice); border-color: #cbd5e1; }
.oauth-btn img, .oauth-btn svg { width: 18px; height: 18px; }
.auth-divider { display: flex; align-items: center; gap: 14px; color: #94a3b8; font-size: .78rem; margin: 4px 0 22px; }
.auth-divider::before, .auth-divider::after { content:''; flex:1; height:1px; background: var(--border); }
.auth-foot { text-align: center; margin-top: 20px; font-size: .88rem; color: var(--gray); }
.auth-foot a { color: var(--blue); font-weight: 700; }
.form-error { background: var(--red-l); color: var(--red); padding: 10px 14px; border-radius: 8px; font-size: .82rem; margin-bottom: 16px; display: none; }
.form-error.show { display: block; }
@media (max-width: 880px){
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-aside { display: none; }
  .auth-card { padding: 32px 24px; border-radius: 16px; }
  .auth-main { align-items: flex-start; padding-top: 32px; }
}

/* ── App shell (agent cockpit — light rail) ── */
.shell { display: grid; grid-template-columns: var(--rail) 1fr; min-height: 100vh; background: #EEF1F4; }
.sidebar {
  background: #FFFFFF; color: var(--navy); display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  border-right: 1px solid var(--border);
  box-shadow: 1px 0 0 rgba(11,18,32,.02);
}
.sb-inner { display: flex; flex-direction: column; width: var(--rail); height: 100vh; min-height: 0; }
.sb-brand {
  padding: 16px 16px 14px; display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--border); text-decoration: none; cursor: pointer;
}
.sb-brand img { height: 32px; width: auto; border-radius: 8px; }
.sb-brand b { color: var(--navy); font-family: var(--font-display); font-size: 1.05rem; letter-spacing: -.02em; }
.sb-nav {
  padding: 10px 8px; display: flex; flex-direction: column; gap: 1px; flex: 1; min-height: 0;
  overflow-y: auto; scrollbar-width: thin; scrollbar-color: #cbd5e1 transparent;
}
.sb-nav::-webkit-scrollbar { width: 4px; }
.sb-nav::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
.sb-section {
  padding: 14px 12px 5px; font-size: .62rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #94a3b8;
}
.sb-section:first-child { padding-top: 4px; }
.sb-link {
  display: flex; align-items: center; gap: 11px; padding: 8px 11px; border-radius: 8px;
  font-size: .855rem; font-weight: 550; color: #475569; transition: background .12s, color .12s; cursor: pointer;
  border: 1px solid transparent;
}
.sb-link:hover { background: #F1F5F9; color: var(--navy); }
.sb-link.active {
  background: var(--blue-bg); color: #0A5F66; border-color: rgba(14,124,134,.22);
  font-weight: 650;
}
.sb-link .ic { width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; opacity: .75; color: inherit; }
.sb-link .ic svg { width: 17px; height: 17px; display: block; }
.sb-link.active .ic { opacity: 1; color: var(--blue); }
.sb-foot { padding: 10px 8px 12px; border-top: 1px solid var(--border); }
.sb-foot .sb-link { color: #64748b; }
.main { display: flex; flex-direction: column; min-width: 0; background: #EEF1F4; }
.topbar {
  background: rgba(255,255,255,.86); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border);
  padding: 0 22px; height: var(--topbar-h);
  display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 50;
}
.topbar h1 { font-size: 1.02rem; font-weight: 700; }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.quota-pill {
  display: none; align-items: center; gap: 6px; padding: 5px 11px; border-radius: 999px;
  background: var(--blue-bg); color: #0A5F66; font-size: .72rem; font-weight: 700;
  border: 1px solid rgba(14,124,134,.2); text-decoration: none;
}
.quota-pill.show { display: inline-flex; }
.quota-pill:hover { background: #d5eef0; }
.user-chip { display: flex; align-items: center; gap: 10px; }
.avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .8rem; overflow: hidden; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.content { padding: 24px 28px 40px; max-width: 1120px; width: 100%; }
.ham-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; margin-right: 4px; border-radius: 8px;
  background: none; border: none; font-size: 1.2rem; line-height: 1; color: var(--navy);
  cursor: pointer; transition: background .15s;
}
.ham-btn:hover { background: var(--ice); }

/* Desktop: smooth collapse / expand of the sidebar */
@media (min-width: 901px){
  .shell { transition: grid-template-columns .28s cubic-bezier(.4, 0, .2, 1); }
  .sb-inner { transition: transform .28s cubic-bezier(.4, 0, .2, 1); }
  .shell.sb-collapsed { grid-template-columns: 0 1fr; }
  .shell.sb-collapsed .sb-inner { transform: translateX(-100%); }
}

@media (max-width: 900px){
  .shell { grid-template-columns: 1fr; }
  .sidebar { position: fixed; left: 0; top: 0; width: var(--rail); z-index: 200; transform: translateX(-100%); transition: transform .25s; }
  .sidebar.open { transform: none; }
  .ham-btn { display: block; }
  .sb-backdrop { display:none; position: fixed; inset: 0; background: rgba(11,18,32,.45); z-index: 150; }
  .sb-backdrop.show { display: block; }
  .content { padding: 18px 16px 32px; }
  .quota-pill { display: none !important; }
}

/* ── Layout helpers ── */
.page-head { margin-bottom: 20px; }
.page-head h2 { font-size: 1.35rem; margin-bottom: 4px; }
.page-head p { color: var(--gray); font-size: .9rem; }
.grid { display: grid; gap: 16px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1000px){ .grid-4 { grid-template-columns: repeat(2,1fr); } .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 640px){ .grid-4, .grid-2 { grid-template-columns: 1fr; } }

/* Stat card */
.stat { background:#fff; border:1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-sm); }
.stat .stat-ic { width: 36px; height: 36px; border-radius: 9px; display:flex; align-items:center; justify-content:center; font-size: 1rem; margin-bottom: 12px; background: var(--blue-bg); color: var(--blue); }
.stat .stat-n { font-family:var(--font-display); font-size: 1.7rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat .stat-l { font-size: .78rem; color: var(--gray); margin-top: 5px; }

/* Tables / lists */
.list-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.list-row:last-child { border-bottom: none; }
.list-row .lr-main { flex: 1; min-width: 0; }
.lr-title { font-weight: 700; color: var(--navy); font-size: .95rem; }
.lr-sub { font-size: .82rem; color: var(--gray); margin-top: 2px; }

/* Empty / loading */
.empty { text-align: center; padding: 56px 24px; color: var(--gray); }
.empty .em-ic { font-size: 2.4rem; margin-bottom: 12px; }
.spinner { width: 30px; height: 30px; border: 3px solid var(--gray-m); border-top-color: var(--blue); border-radius: 50%; animation: spin .8s linear infinite; margin: 40px auto; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Toast */
.toast-wrap { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--navy); color: #fff; padding: 13px 18px; border-radius: 10px; box-shadow: var(--shadow-lg); font-size: .88rem; font-weight: 500; opacity: 0; transform: translateY(10px); transition: all .25s; max-width: 340px; }
.toast.show { opacity: 1; transform: none; }
.toast.success { background: var(--green); }
.toast.error { background: var(--red); }

/* Progress bar */
.progress { height: 8px; background: var(--gray-m); border-radius: 999px; overflow: hidden; }
.progress > span { display: block; height: 100%; background: var(--blue); border-radius: 999px; transition: width .4s; }

/* Misc */
.muted { color: var(--gray); }
.row { display: flex; align-items: center; gap: 12px; }
.between { justify-content: space-between; }
.wrap { flex-wrap: wrap; }
.mt-2 { margin-top: 8px; } .mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; }

/* -- Nav badge (for "Needs Review" count) ------------------------------------ */
.nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9px;
  background: #ef4444;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  margin-left: auto;
  line-height: 1;
}

@keyframes cgpulse {
  0%   { opacity: 1; transform: scale(1); }
  50%  { opacity: .35; transform: scale(.8); }
  100% { opacity: 1; transform: scale(1); }
}

/* ── Markdown prose (Confluence-inspired) ──────────────────────────────── */
.md-prose {
  font-size: 14px;
  line-height: 1.714;
  color: #172b4d;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
.md-prose > :first-child { margin-top: 0 !important; }
.md-prose > :last-child  { margin-bottom: 0 !important; }

.md-prose .md-h1,
.md-prose .md-h2,
.md-prose .md-h3,
.md-prose .md-h4 {
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: #172b4d;
  margin: 1.25em 0 0.5em;
}
.md-prose .md-h1 {
  font-size: 1.714em;
  border-bottom: 1px solid #dfe1e6;
  padding-bottom: 0.35em;
}
.md-prose .md-h2 {
  font-size: 1.429em;
  border-bottom: 1px solid #dfe1e6;
  padding-bottom: 0.35em;
}
.md-prose .md-h3 { font-size: 1.143em; font-weight: 600; color: #44546f; }
.md-prose .md-h4 { font-size: 1em; font-weight: 600; color: #44546f; }

.md-prose .md-p {
  margin: 0.75em 0;
  color: #172b4d;
}
.md-prose .md-p:first-child { margin-top: 0; }

.md-prose strong { font-weight: 600; color: #172b4d; }
.md-prose em { font-style: italic; }
.md-prose del { opacity: 0.65; text-decoration: line-through; }

.md-prose a {
  color: #0052cc;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 82, 204, 0.35);
  transition: color .15s, border-color .15s;
}
.md-prose a:hover {
  color: #0065ff;
  border-bottom-color: #0065ff;
}

.md-prose .md-inline-code {
  font-family: 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
  font-size: 0.875em;
  background: #f4f5f7;
  border: 1px solid #dfe1e6;
  padding: 0.15em 0.45em;
  border-radius: 3px;
  color: #172b4d;
}

.md-prose .md-code-wrap {
  margin: 1em 0;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid #dfe1e6;
}
.md-prose .md-code-lang {
  font-size: 0.75em;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #44546f;
  background: #f4f5f7;
  padding: 6px 12px;
  border-bottom: 1px solid #dfe1e6;
}
.md-prose .md-pre {
  margin: 0;
  padding: 12px 14px;
  background: #f4f5f7;
  overflow-x: auto;
  font-size: 0.857em;
  line-height: 1.55;
}
.md-prose .md-pre code {
  font-family: 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
  color: #172b4d;
  white-space: pre;
}

.md-prose .md-ul,
.md-prose .md-ol {
  margin: 0.5em 0 1em;
  padding-left: 1.5em;
}
.md-prose .md-ul { list-style-type: disc; }
.md-prose .md-ol { list-style-type: decimal; }
.md-prose .md-ul li,
.md-prose .md-ol li {
  margin: 0.35em 0;
  padding-left: 0.15em;
}
.md-prose .md-ul li::marker { color: #0052cc; }
.md-prose .md-ol li::marker { font-weight: 600; color: #44546f; }

.md-prose .md-quote {
  margin: 1em 0;
  padding: 12px 16px;
  border-left: 4px solid #0052cc;
  background: #deebff;
  border-radius: 3px;
  color: #172b4d;
  font-style: normal;
}

.md-prose .md-hr {
  border: none;
  border-top: 1px solid #dfe1e6;
  margin: 1.5em 0;
}

.md-prose .md-table-wrap {
  margin: 1em 0;
  overflow-x: auto;
  border: 1px solid #dfe1e6;
  border-radius: 3px;
}
.md-prose .md-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.929em;
}
.md-prose .md-table th {
  text-align: left;
  font-weight: 600;
  background: #f4f5f7;
  color: #44546f;
  padding: 10px 12px;
  border: 1px solid #dfe1e6;
}
.md-prose .md-table td {
  padding: 10px 12px;
  border: 1px solid #dfe1e6;
  vertical-align: top;
  color: #172b4d;
}
.md-prose .md-table tbody tr:last-child td { border-bottom: none; }
.md-prose .md-table tbody tr:nth-child(even) td { background: #fafbfc; }

/* User bubble overrides (blue background) */
.msg.user .msg-bubble,
.msg.user .md-prose,
.msg.user .md-prose .md-p,
.msg.user .md-prose strong,
.msg.user .md-prose .md-h1,
.msg.user .md-prose .md-h2,
.msg.user .md-prose .md-h3,
.msg.user .md-prose .md-h4,
.msg.user .md-prose li { color: #fff; }
.msg.user .md-prose a { color: #bfdbfe; text-decoration-color: rgba(191, 219, 254, 0.5); }
.msg.user .md-prose a:hover { color: #fff; }
.msg.user .md-prose .md-inline-code {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.msg.user .md-prose .md-quote {
  border-left-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
}
