@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@500;600;700&display=swap');

:root {
  --bg-main: #f5f7fb;
  --bg-card: #ffffff;
  --primary: #1d4ed8;
  --primary-dark: #1e40af;
  --primary-light: #dbeafe;
  --secondary: #0f172a;
  --success: #10b981;
  --success-light: #d1fae5;
  --warning: #f59e0b;
  --warning-light: #fef3c7;
  --danger: #ef4444;
  --danger-light: #fee2e2;
  --text-main: #0f172a;
  --text-secondary: #64748b;
  --border: #e2e8f0;
  --sidebar-bg: #0f172a;
  --sidebar-text: #94a3b8;
  --sidebar-active: #1d4ed8;
  --sidebar-hover: rgba(255,255,255,0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.04);
  --sidebar-width: 260px;
  --topbar-height: 64px;
  --transition: all 0.2s ease;
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* ===== LAYOUT ===== */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

/* ===== SIDEBAR ===== */
.sidebar {
  width: var(--sidebar-width);
  background: var(--sidebar-bg);
  position: fixed;
  top: 0; left: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  overflow-y: auto;
  transition: transform 0.3s ease;
}

.sidebar-brand {
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar-brand-logo {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.sidebar-brand-logo img {
  width: 32px; height: 32px;
  object-fit: contain;
}

.sidebar-brand-logo i {
  color: white;
  font-size: 18px;
}

.sidebar-brand-text { flex: 1; min-width: 0; }
.sidebar-brand-name {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar-brand-sub {
  color: var(--sidebar-text);
  font-size: 11px;
  margin-top: 2px;
}

.sidebar-nav {
  flex: 1;
  padding: 12px 0;
}

.sidebar-section {
  padding: 16px 16px 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #475569;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: var(--sidebar-text);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 0;
  transition: var(--transition);
  margin: 1px 8px;
  border-radius: var(--radius-sm);
}

.sidebar-item:hover {
  background: var(--sidebar-hover);
  color: #e2e8f0;
  text-decoration: none;
}

.sidebar-item.active {
  background: var(--primary);
  color: #fff;
}

.sidebar-item i {
  width: 18px;
  text-align: center;
  font-size: 14px;
  flex-shrink: 0;
}

.sidebar-footer {
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: #475569;
  font-size: 11px;
}

/* ===== MAIN ===== */
.main-content {
  margin-left: var(--sidebar-width);
  flex: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== TOPBAR ===== */
.topbar {
  height: var(--topbar-height);
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 28px;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.topbar-toggle {
  display: none;
  background: none; border: none;
  color: var(--text-secondary);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
}

.topbar-title {
  flex: 1;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-main);
}

.topbar-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-avatar {
  width: 34px; height: 34px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.topbar-user-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
}
.topbar-user-role {
  font-size: 11px;
  color: var(--text-secondary);
}

/* ===== PAGE CONTENT ===== */
.page-content {
  flex: 1;
  padding: 28px;
}

.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.page-header-info h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 4px;
  font-family: 'Poppins', sans-serif;
}

.page-header-info p {
  color: var(--text-secondary);
  font-size: 13.5px;
  margin: 0;
}

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.card-header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-title i {
  color: var(--primary);
  font-size: 16px;
}

.card-body {
  padding: 22px;
}

/* ===== STAT CARDS ===== */
.stat-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.stat-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}

.stat-icon.blue { background: var(--primary-light); color: var(--primary); }
.stat-icon.green { background: var(--success-light); color: var(--success); }
.stat-icon.yellow { background: var(--warning-light); color: var(--warning); }
.stat-icon.red { background: var(--danger-light); color: var(--danger); }

.stat-info { flex: 1; }
.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
  font-family: 'Poppins', sans-serif;
}
.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  height: 40px;
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(29,78,216,0.3);
}

.btn-secondary {
  background: var(--bg-main);
  color: var(--text-main);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--border);
  color: var(--text-main);
  text-decoration: none;
}

.btn-success {
  background: var(--success);
  color: #fff;
}
.btn-success:hover {
  background: #059669;
  color: #fff;
  text-decoration: none;
}

.btn-danger {
  background: var(--danger);
  color: #fff;
}
.btn-danger:hover {
  background: #dc2626;
  color: #fff;
  text-decoration: none;
}

.btn-warning {
  background: var(--warning);
  color: #fff;
}
.btn-warning:hover {
  background: #d97706;
  color: #fff;
  text-decoration: none;
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
}

.btn-sm {
  height: 32px;
  padding: 0 12px;
  font-size: 12.5px;
  border-radius: var(--radius-sm);
}

.btn-icon {
  width: 36px;
  height: 36px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

/* ===== TABLES ===== */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.data-table thead th {
  background: #f8fafc;
  padding: 12px 16px;
  text-align: left;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.data-table tbody td {
  padding: 13px 16px;
  border-bottom: 1px solid #f1f5f9;
  color: var(--text-main);
  vertical-align: middle;
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:hover td {
  background: #f8fafc;
}

/* ===== FORMS ===== */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-label .required {
  color: var(--danger);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: var(--text-main);
  background: #fff;
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29,78,216,0.1);
}

.form-control::placeholder {
  color: #cbd5e1;
}

textarea.form-control {
  height: auto;
  min-height: 120px;
  padding: 12px 14px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-hint {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 5px;
}

.form-error {
  font-size: 12px;
  color: var(--danger);
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-control.is-invalid {
  border-color: var(--danger);
}

.form-section {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.form-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.form-section-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-section-title i {
  color: var(--primary);
}

/* ===== BADGES ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
}

.badge-success { background: var(--success-light); color: #065f46; }
.badge-warning { background: var(--warning-light); color: #92400e; }
.badge-danger { background: var(--danger-light); color: #991b1b; }
.badge-primary { background: var(--primary-light); color: #1e40af; }
.badge-secondary { background: #f1f5f9; color: var(--text-secondary); }

/* ===== ALERTS ===== */
.alert {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.alert i { margin-top: 1px; flex-shrink: 0; }
.alert-success { background: var(--success-light); color: #065f46; border: 1px solid #a7f3d0; }
.alert-danger { background: var(--danger-light); color: #991b1b; border: 1px solid #fca5a5; }
.alert-warning { background: var(--warning-light); color: #92400e; border: 1px solid #fcd34d; }
.alert-info { background: var(--primary-light); color: #1e40af; border: 1px solid #93c5fd; }

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  padding: 16px 0 0;
  flex-wrap: wrap;
}

.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition);
}

.page-link:hover, .page-link.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  text-decoration: none;
}

.page-link.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* ===== SEARCH BAR ===== */
.search-bar {
  position: relative;
  flex: 1;
  max-width: 340px;
}

.search-bar i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-size: 14px;
}

.search-bar input {
  padding-left: 36px;
}

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* ===== STATUS INDICATOR ===== */
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}
.status-dot.active { background: var(--success); }
.status-dot.inactive { background: var(--text-secondary); }
.status-dot.draft { background: var(--warning); }
.status-dot.published { background: var(--success); }

/* ===== LOGIN ===== */
.login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1d4ed8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 40px;
}

.login-logo {
  text-align: center;
  margin-bottom: 28px;
}

.login-logo-icon {
  width: 64px; height: 64px;
  background: var(--primary);
  border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: #fff;
  margin-bottom: 16px;
}

.login-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  font-family: 'Poppins', sans-serif;
}

.login-sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-secondary);
}

.empty-state-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.3;
}

.empty-state-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* ===== DROPDOWN ACTIONS ===== */
.actions-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--border); }

/* ===== PUBLIC AREA ===== */
.public-header {
  background: var(--secondary);
  color: #fff;
  padding: 0;
}

.public-header-top {
  background: rgba(0,0,0,0.2);
  padding: 8px 0;
  font-size: 12px;
}

.public-header-main {
  padding: 24px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.public-header-logo {
  width: 72px; height: 72px;
  object-fit: contain;
}

.public-header-text h1 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.public-header-text p {
  margin: 4px 0 0;
  font-size: 13px;
  opacity: 0.7;
}

.public-nav {
  background: var(--primary);
  padding: 0;
}

.public-nav .nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  font-weight: 500;
  padding: 12px 16px;
  display: block;
  text-decoration: none;
  transition: var(--transition);
}

.public-nav .nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.public-footer {
  background: var(--secondary);
  color: rgba(255,255,255,0.6);
  padding: 28px 0;
  font-size: 12.5px;
  margin-top: 48px;
}

/* ===== EDITION VIEW ===== */
.edicao-header {
  background: #fff;
  border: 2px solid #0f172a;
  padding: 24px;
  text-align: center;
  margin-bottom: 24px;
}

.edicao-header-brasao {
  width: 80px; height: 80px;
  object-fit: contain;
  margin-bottom: 12px;
}

.edicao-header-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.edicao-header-sub {
  font-size: 12px;
  color: #666;
}

.edicao-header-info {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 13px;
  border-top: 1px solid #ddd;
  padding-top: 12px;
}

.publicacao-item {
  background: #fff;
  border: 1px solid #ddd;
  margin-bottom: 16px;
  padding: 20px;
}

.publicacao-item-header {
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.publicacao-tipo {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
}

.publicacao-titulo {
  font-size: 15px;
  font-weight: 700;
  margin: 4px 0;
}

.publicacao-ementa {
  font-size: 13px;
  color: #555;
  font-style: italic;
}

.publicacao-texto {
  font-size: 14px;
  line-height: 1.8;
  white-space: pre-wrap;
}

.autenticacao-block {
  border: 2px solid #0f172a;
  padding: 20px;
  margin-top: 32px;
  font-size: 12px;
}

/* ===== PRINT ===== */
@media print {
  /* ---- Folha A4 com margens seguras ---- */
  @page {
    size: A4 portrait;
    margin: 15mm 18mm 15mm 18mm;
  }

  /* ---- Zera tudo no html/body ---- */
  html, body {
    width: 210mm !important;
    max-width: 210mm !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    overflow: hidden !important;
  }

  /* ---- Oculta absolutamente tudo do body ---- */
  body > * {
    display: none !important;
  }

  /* ---- Mostra SOMENTE o print-wrapper ---- */
  .print-wrapper {
    display: block !important;
    font-family: 'Times New Roman', Times, serif !important;
    font-size: 11pt !important;
    line-height: 1.6 !important;
    color: #000 !important;
    background: #fff !important;
    /* Largura = A4 (210mm) - margens (18mm * 2) = 174mm */
    width: 174mm !important;
    max-width: 174mm !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  /* Todos os elementos filhos respeitam a largura */
  .print-wrapper * {
    color: #000 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-decoration: none !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  /* Imagens não ultrapassam a largura */
  .print-wrapper img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Tabelas e código não transbordam */
  .print-wrapper table,
  .print-wrapper pre,
  .print-wrapper code {
    max-width: 174mm !important;
    overflow: hidden !important;
    word-break: break-all !important;
  }

  /* Texto justificado com hifenização */
  .print-wrapper div,
  .print-wrapper p {
    text-align: justify !important;
    hyphens: auto !important;
    -webkit-hyphens: auto !important;
  }

  /* Cabeçalho centralizado sem justificar */
  .print-wrapper [style*="text-align:center"],
  .print-wrapper [style*="text-align: center"] {
    text-align: center !important;
    hyphens: none !important;
  }

  /* Direita também sem justificar */
  .print-wrapper [style*="text-align:right"],
  .print-wrapper [style*="text-align: right"] {
    text-align: right !important;
    hyphens: none !important;
  }

  /* Publicações e bloco de auth não cortam entre páginas */
  .pub-bloco {
    break-inside: avoid !important;
    page-break-inside: avoid !important;
  }
  .auth-bloco {
    break-inside: avoid !important;
    page-break-inside: avoid !important;
  }

  /* ---- Área administrativa (páginas /admin) ---- */
  .sidebar,
  .topbar,
  .no-print,
  .page-header,
  .filter-bar,
  .pagination,
  .breadcrumb,
  .actions-menu {
    display: none !important;
  }
  .main-content { margin-left: 0 !important; }
  .page-content  { padding: 0 !important; }
  .card { box-shadow: none !important; border: 1px solid #ccc !important; }
}

/* ---- Print-wrapper invisível na tela ---- */
.print-wrapper {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .main-content {
    margin-left: 0;
  }
  .topbar-toggle {
    display: block;
  }
  .sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
  }
  .sidebar-overlay.show {
    display: block;
  }
}

@media (max-width: 576px) {
  .page-content { padding: 16px; }
  .topbar { padding: 0 16px; }
  .filter-bar { flex-direction: column; align-items: stretch; }
  .page-header { flex-direction: column; }
  .stat-value { font-size: 22px; }
}

/* ===== MISC ===== */
.text-primary { color: var(--primary) !important; }
.text-success { color: var(--success) !important; }
.text-warning { color: var(--warning) !important; }
.text-danger { color: var(--danger) !important; }
.text-muted { color: var(--text-secondary) !important; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.gap-2 { gap: 8px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.w-100 { width: 100%; }
