/* Member Center Portal — Base Styles (green accent, synced with dnw-template-company-portal) */

:root {
  color-scheme: light;
  --bg-primary: #f3f7f4;
  --text-inverse: #ffffff;
  --bg-secondary: #ffffff;
  --status-active-bg: #dcfce7;
  --status-active-color: #166534;
  --status-trial-bg: #fef9c3;
  --status-trial-color: #854d0e;
  --status-cancel-bg: #fee2e2;
  --status-cancel-color: #991b1b;
  --bg-sidebar: #ffffff;
  --text-primary: #1a2830;
  --text-secondary: #62707a;
  --text-sidebar: #1a2830;
  --sidebar-muted: #62707a;
  --sidebar-hover: rgba(31, 157, 108, 0.08);
  --sidebar-border: #ccd6db;
  --accent: #1f9d6c;
  --accent-hover: #168b5f;
  --danger: #9a5050;
  --success: #4a7a68;
  --border: #bcc8ce;
  --radius: 8px;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg-primary: #0b1411;
  --text-inverse: #ffffff;
  --bg-secondary: #13201a;
  --status-active-bg: rgba(34, 197, 94, 0.18);
  --status-active-color: #bbf7d0;
  --status-trial-bg: rgba(234, 179, 8, 0.18);
  --status-trial-color: #fde68a;
  --status-cancel-bg: rgba(248, 113, 113, 0.18);
  --status-cancel-color: #fecaca;
  --bg-sidebar: #13201a;
  --text-primary: #e2e8f0;
  --text-secondary: #8a9bad;
  --text-sidebar: #e2e8f0;
  --sidebar-muted: rgba(226, 232, 240, 0.72);
  --sidebar-hover: rgba(76, 175, 80, 0.08);
  --sidebar-border: rgba(42, 53, 69, 1);
  --accent: #2fb577;
  --accent-hover: #1f9d6c;
  --danger: #fca5a5;
  --success: #86efac;
  --border: #2a3545;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    color-scheme: dark;
    --bg-primary: #0b1411;
    --bg-secondary: #13201a;
    --bg-sidebar: #13201a;
    --text-primary: #e2e8f0;
    --text-secondary: #8a9bad;
    --text-sidebar: #e2e8f0;
    --sidebar-muted: rgba(226, 232, 240, 0.72);
    --sidebar-hover: rgba(76, 175, 80, 0.08);
    --sidebar-border: rgba(42, 53, 69, 1);
    --accent: #2fb577;
    --accent-hover: #1f9d6c;
    --danger: #fca5a5;
    --success: #86efac;
    --border: #2a3545;
    --text-inverse: #ffffff;
    --status-active-bg: rgba(34, 197, 94, 0.18);
    --status-active-color: #bbf7d0;
    --status-trial-bg: rgba(234, 179, 8, 0.18);
    --status-trial-color: #fde68a;
    --status-cancel-bg: rgba(248, 113, 113, 0.18);
    --status-cancel-color: #fecaca;
  }
}

html, body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow: hidden;
}

.text-secondary,
.card .text-secondary {
  color: var(--text-secondary) !important;
}

.card {
  background: var(--bg-secondary) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  box-shadow: none !important;
  padding: 1.5rem !important;
  width: 100%;
}

.shadow-sm,
.p-3,
.p-md-4 {
  box-shadow: none !important;
}

.portal-tools {
  position: fixed;
  right: 1rem;
  bottom: 4.5rem;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.demo-data-toggle,
.theme-toggle {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.demo-data-toggle {
  padding: 0.55rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}

.demo-data-menu {
  display: flex;
  flex-direction: column;
  min-width: 180px;
  padding: 0.35rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.demo-data-option {
  border: none;
  background: transparent;
  color: var(--text-primary);
  text-align: left;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  cursor: pointer;
}

.demo-data-option:hover {
  background: var(--sidebar-hover);
  color: var(--text-primary);
}

.theme-toggle {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, border-color 0.15s;
  backdrop-filter: blur(8px);
}

:root[data-theme="dark"] .theme-toggle {
  background: var(--bg-secondary);
}

.theme-toggle:hover {
  transform: translateY(-1px);
}

.theme-icon {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  display: none;
}

.theme-toggle .theme-icon-moon { display: block; }
:root[data-theme="dark"] .theme-toggle .theme-icon-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .theme-icon-sun { display: block; }

.brand-link .brand-name {
  color: var(--text-sidebar);
}

.theme-logo {
  filter: none;
}

:root[data-theme="dark"] .theme-logo {
  filter: none;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .theme-logo {
    filter: none;
  }
}

/* ── Sidebar ── */
.sidebar-layout {
  display: flex;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
}

/* ── Auth Pages (centered, no sidebar) ── */
.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.auth-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.auth-card h1 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.auth-card .subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.auth-card .error {
  text-align: center;
}

.auth-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.auth-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.auth-logo {
  width: 3.5rem;
  height: 3.5rem;
}

.auth-logo-light {
  display: block;
}

.auth-logo-dark {
  display: none;
}

:root[data-theme="dark"] .auth-logo-light {
  display: none;
}

:root[data-theme="dark"] .auth-logo-dark {
  display: block;
}

.auth-heading {
  text-align: inherit;
}

.auth-heading h1 {
  margin: 0;
}

.auth-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.25rem;
  align-items: stretch;
  min-height: 420px;
}

.auth-panel-form,
.auth-panel-oauth {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-divider {
  display: flex;
  align-items: stretch;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1rem;
  opacity: 0.8;
  min-height: 100%;
  padding: 0 0.35rem;
}

.auth-divider::after {
  content: "";
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
  align-self: stretch;
}

.auth-panel {
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
  min-height: 100%;
}

.panel-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.oauth-grid {
  display: grid;
  gap: 0.75rem;
}

.btn-oauth {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: none;
  text-align: left;
}

/* Higher specificity to defeat Bootstrap .btn rules (display/block/text-align) */
.auth-panel-oauth .btn-oauth {
  display: inline-flex !important;
  justify-content: flex-start !important;
  text-align: left !important;
}

.auth-panel-oauth .btn-oauth:hover,
.auth-panel-oauth .btn-oauth:focus {
  background: var(--sidebar-hover);
  color: var(--text-primary);
  text-decoration: none;
}

.oauth-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 1.15rem;
}

.oauth-icon-google,
.oauth-icon-microsoft {
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
  background: var(--bg-secondary);
}

.oauth-error-slot {
  min-height: 0;
  padding: 0.25rem 0;
}

.oauth-error-msg {
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--danger);
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1rem 0 1rem;
}

.consent-row .form-check-input {
  margin-top: 0.25rem;
}

.consent-row .form-check-label,
.consent-row a {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.consent-row a {
  color: var(--accent);
  text-decoration: none;
}

.auth-link {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
}

.auth-link a {
  color: var(--accent);
  text-decoration: none;
}

/* ── Sidebar ── */
.sidebar {
  width: 240px;
  flex: 0 0 240px;
  background: var(--bg-sidebar);
  color: var(--text-sidebar);
  border-right: 1px solid var(--sidebar-border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100vh;
  min-height: 100vh;
  overflow-y: auto;
}

.sidebar .brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-sidebar);
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.sidebar .brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.sidebar .brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-section {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav-section-label {
  margin: 0 0 0.15rem 0.75rem;
  color: var(--sidebar-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
}

.sidebar nav a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-sidebar);
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 0.25rem;
  transition: background 0.15s;
}

.nav-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sidebar nav a:hover,
.sidebar nav a.active {
  background: var(--sidebar-hover);
  color: var(--text-sidebar);
}

.sidebar .logout {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--sidebar-border);
}

.sidebar .logout a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--sidebar-muted);
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  transition: all 0.15s;
}

.sidebar .logout a:hover {
  color: var(--text-sidebar);
  background: var(--sidebar-hover);
}

/* ── Main Content ── */
.global-notice-strip {
  position: static;
  z-index: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 0 1rem;
  pointer-events: none;
}

.global-notice {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin: 0;
  pointer-events: auto;
}

.global-notice .btn-close {
  flex: 0 0 auto;
  filter: var(--bs-btn-close-filter, none);
}

.main {
  padding-top: 2rem;
}

.main {
  flex: 1 1 auto;
  min-width: 0;
  padding: 2rem 3rem;
  width: 100%;
  max-width: none;
  height: 100vh;
  overflow-y: auto;
}

.main h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* ── Cards ── */
.pricing-tiers {
  width: 100%;
}

.tier-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.tier-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  min-height: 100%;
}

.tier-footer {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding-top: 0.75rem;
}

.tier-consent-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.tier-consent-row .form-check {
  flex: 1 1 220px;
}

.tier-consent-row .subscribe-btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

.tier-card > *:last-child { margin-top: auto; }

.tier-actions,
.kofi-link-wrap {
  margin-top: auto;
}

.tier-actions {
  display: grid;
  gap: 0.75rem;
}

.paypal-btn {
  border: 1px solid #0070ba;
  color: #0070ba;
  background: white;
  font-weight: 600;
}

.kofi-link-btn {
  display: block;
  text-align: center;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.95rem;
}

.tier-card.popular {
  box-shadow: 0 8px 24px rgba(31, 157, 108, 0.18);
  transform: translateY(-1px);
}

.popular-badge {
  position: absolute;
  top: -10px;
  right: 10px;
  background: var(--accent);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

@media (max-width: 1400px) {
  .main { max-width: 100%; }
}

@media (max-width: 980px) {
  .auth-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  body { overflow: auto; }
  .global-notice-strip { padding: 0.75rem 0.75rem 0; }
  .global-notice { margin-bottom: 0.5rem; }
  .sidebar-layout { flex-direction: column; height: auto; min-height: 100vh; overflow: visible; }
  .sidebar { width: 100%; height: auto; min-height: auto; overflow: visible; }
  .main { height: auto; overflow: visible; padding: 1rem; }
  .theme-toggle { right: 0.75rem; bottom: 0.75rem; }
  .tier-consent-row { align-items: stretch; }
  .tier-consent-row .subscribe-btn { width: 100%; }
}

.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.card label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.card .value {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

/* ── Forms ── */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.form-group input {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.15s;
}

.form-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

.btn {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
}

.btn-primary,
.paypal-btn {
  background: var(--accent) !important;
  color: #fff !important;
  border-color: var(--accent) !important;
}

.btn-primary:hover,
.paypal-btn:hover,
.btn-primary:focus,
.paypal-btn:focus {
  background: var(--accent-hover) !important;
  border-color: var(--accent-hover) !important;
  color: #fff !important;
}

.btn-outline-primary {
  color: var(--text-primary) !important;
  border-color: var(--border) !important;
  background: transparent !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: var(--accent) !important;
  color: #fff !important;
  border-color: var(--accent) !important;
}

.kofi-link-btn,
.btn-outline-secondary {
  color: var(--text-primary) !important;
  border-color: var(--border) !important;
  background: transparent !important;
}

.kofi-link-btn:hover,
.btn-outline-secondary:hover,
.kofi-link-btn:focus,
.btn-outline-secondary:focus {
  background: var(--sidebar-hover) !important;
  color: var(--text-primary) !important;
  border-color: var(--accent) !important;
}

.btn-danger {
  background: var(--danger);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--bg-primary);
}

.error {
  color: var(--danger);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* ── Billing / Receipt UI ── */
.receipt-shell {
  display: grid;
  gap: 1rem;
  max-width: 920px;
}

.receipt-card {
  background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.receipt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.receipt-card {
  padding: 1rem;
}

.receipt-card--compact {
  padding: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.receipt-topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
}

.receipt-amount {
  font-size: 1.5rem;
  font-weight: 700;
}

.receipt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin: 0;
}

.receipt-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.5rem;
}

.receipt-grid div {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem;
}

.receipt-grid dt {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.receipt-grid dd {
  margin: 0;
  font-weight: 600;
}

.receipt-note {
  margin-top: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.receipt-actions--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.receipt-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.receipt-link:hover {
  text-decoration: underline;
}

.history-card {
  padding: 1rem;
  background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.history-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.history-tab {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-primary);
  color: var(--text-primary);
  padding: 0.45rem 0.75rem;
  font-size: 0.875rem;
  cursor: pointer;
}

.history-tab.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  border-color: var(--accent);
  color: var(--text-inverse);
}

.orders-table-shell {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.orders-table-shell table {
  min-width: 720px;
  width: 100%;
}

.history-table,
.history-table thead th,
.history-table tbody td,
.history-table tfoot td {
  color: var(--text-primary) !important;
  background-color: transparent !important;
  border-color: var(--border) !important;
}

.history-table th {
  color: var(--text-secondary) !important;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.history-row td {
  color: var(--text-primary) !important;
  background-color: transparent !important;
}

.history-row:hover td {
  background: var(--sidebar-hover) !important;
}

.sub-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s;
}

.sub-row:hover {
  background: var(--bg-primary);
}

.sub-row:last-child {
  border-bottom: none;
}

.sub-name { font-weight: 600; }
.sub-tier { color: var(--accent); }
.sub-status {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}
.sub-status.active { background: var(--status-active-bg, #dcfce7); color: var(--status-active-color, #166534); }
.sub-status.trialing { background: var(--status-trial-bg, #fef9c3); color: var(--status-trial-color, #854d0e); }
.sub-status.cancelled { background: var(--status-cancel-bg, #fee2e2); color: var(--status-cancel-color, #991b1b); }

.sub-detail {
  padding: 1rem 1rem 1rem 2rem;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.empty-state {
  text-align: center;
  padding: 3rem;
  color: var(--text-secondary);
}

@media print {
  @page {
    size: A4;
    margin: 10mm;
  }

  body {
    background: #fff !important;
    color: #111827 !important;
    font-size: 12px;
  }

  .portal-tools,
  .theme-toggle,
  .sidebar,
  .logout,
  .btn,
  .receipt-actions {
    display: none !important;
  }

  .main {
    margin: 0;
    padding: 0;
  }

  .receipt-card,
  .history-card {
    box-shadow: none !important;
    border: 1px solid #d1d5db !important;
    background: #fff !important;
  }
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-free { background: #f3f4f6; color: #374151; }
.badge-premium { background: #fef3c7; color: #92400e; }
.badge-basic { background: #dbeafe; color: #1e40af; }