/* PKKM App SPA - Kemenag green theme */
:root {
  --pkkm-primary: #047a3a;
  --pkkm-primary-dark: #035a2a;
  --pkkm-primary-light: #d6efd9;
  --pkkm-soft: #f4faf5;
  --pkkm-accent: #f8b500;
  --pkkm-danger: #c0392b;
}

body {
  background: var(--pkkm-soft);
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ===== Navbar: forced single-line, compact font ===== */
.pkkm-nav {
  padding-top: .2rem;
  padding-bottom: .2rem;
}
.pkkm-nav .navbar-brand {
  font-size: .95rem;
  white-space: nowrap;
}
.pkkm-nav .navbar-brand span:first-child {
  font-size: .95rem;
  font-weight: 600;
}
.pkkm-nav-list {
  flex-wrap: nowrap !important;
  overflow: visible;
}
/* Pastikan dropdown tidak terpotong */
.pkkm-nav .navbar-collapse {
  overflow: visible !important;
}
.pkkm-nav .dropdown-menu {
  position: absolute !important;
  z-index: 1050;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  border-radius: 10px;
  border: 1px solid #eef2f0;
  padding: .5rem;
}
.pkkm-nav .dropdown-item {
  border-radius: 6px;
  padding: .5rem .75rem;
  font-size: .85rem;
}
.pkkm-nav .dropdown-item:hover {
  background: #f0f7f2;
}
.pkkm-nav-list .nav-link {
  font-size: .82rem;
  padding: .25rem .5rem;
  white-space: nowrap;
  font-weight: 500;
}
.pkkm-nav-list .nav-item { flex-shrink: 0; }
@media (max-width: 991px) {
  .pkkm-nav-list {
    flex-wrap: wrap;
    overflow-x: visible;
  }
  .pkkm-nav-list .nav-link {
    font-size: .9rem;
    padding: .35rem .75rem;
  }
}

/* ===== Dashboard / Beranda ===== */
.dash-hero {
  background: linear-gradient(135deg, #047a3a 0%, #035a2a 60%, #024a22 100%);
  color: #fff;
  border-radius: 14px;
  padding: 1.75rem 2rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 24px rgba(4,122,58,.22);
  position: relative;
  overflow: hidden;
}
.dash-hero::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 180px; height: 180px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.dash-hero::after {
  content: '';
  position: absolute;
  bottom: -40px; right: 40px;
  width: 120px; height: 120px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.dash-hero h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 .25rem;
  position: relative;
  z-index: 1;
}
.dash-hero p {
  margin: 0;
  opacity: .9;
  font-size: .85rem;
  position: relative;
  z-index: 1;
}
.dash-hero .dash-hero-icon {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3.5rem;
  opacity: .15;
  z-index: 0;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
  margin-bottom: 1.25rem;
}
.dash-stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  border: 1px solid #eef2f0;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none !important;
  color: inherit !important;
  display: block;
  position: relative;
  overflow: hidden;
}
.dash-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(4,122,58,.12);
  border-color: var(--pkkm-primary-light);
}
.dash-stat-card .dash-stat-icon {
  position: absolute;
  top: .6rem;
  right: .75rem;
  font-size: 2rem;
  opacity: .12;
  color: var(--pkkm-primary);
}
.dash-stat-card .dash-stat-label {
  font-size: .72rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600;
  margin-bottom: .15rem;
}
.dash-stat-card .dash-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--pkkm-primary);
  line-height: 1.1;
}
.dash-stat-card .dash-stat-sub {
  font-size: .72rem;
  color: #aaa;
  margin-top: .15rem;
}
@media (max-width: 767px) {
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .dash-stat-card .dash-stat-value { font-size: 1.6rem; }
  .dash-hero { padding: 1.25rem 1.25rem; }
  .dash-hero h2 { font-size: 1.3rem; }
}

.dash-panel {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  border: 1px solid #eef2f0;
  overflow: hidden;
  margin-bottom: 1rem;
}
.dash-panel-header {
  padding: .75rem 1.25rem;
  border-bottom: 1px solid #eef2f0;
  font-weight: 700;
  font-size: .9rem;
  color: var(--pkkm-primary);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.dash-panel-body { padding: 1.25rem; }

.dash-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem;
}
.dash-quick-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem .8rem;
  border-radius: 8px;
  border: 1px solid #e0e8e2;
  background: #fafcfa;
  color: #333 !important;
  text-decoration: none !important;
  font-size: .82rem;
  font-weight: 600;
  transition: all .18s;
}
.dash-quick-btn:hover {
  background: var(--pkkm-primary);
  color: #fff !important;
  border-color: var(--pkkm-primary);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(4,122,58,.18);
}
.dash-quick-btn i { font-size: 1rem; color: var(--pkkm-primary); }
.dash-quick-btn:hover i { color: #fff; }
.dash-quick-btn.btn-success-soft {
  background: #edf8ef;
  border-color: #c5e7ca;
}
.dash-quick-btn.btn-success-soft:hover {
  background: var(--pkkm-primary);
  border-color: var(--pkkm-primary);
}
.dash-quick-btn.btn-secondary-soft {
  background: #f3f4f6;
  border-color: #e0e3e6;
}
.dash-quick-btn.btn-secondary-soft:hover {
  background: #6c757d;
  border-color: #6c757d;
}
@media (max-width: 767px) {
  .dash-quick-grid { grid-template-columns: 1fr; }
}

.dash-komponen-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dash-komponen-list li {
  padding: .5rem 0;
  border-bottom: 1px solid #f0f3f0;
  font-size: .85rem;
}
.dash-komponen-list li:last-child { border-bottom: 0; }
.dash-komponen-list li strong { color: var(--pkkm-primary); }
.dash-komponen-list li .text-muted { font-size: .75rem; }

.btn-primary {
  background-color: var(--pkkm-primary);
  border-color: var(--pkkm-primary);
}
.btn-primary:hover, .btn-primary:focus {
  background-color: var(--pkkm-primary-dark);
  border-color: var(--pkkm-primary-dark);
}
.btn-outline-primary {
  color: var(--pkkm-primary);
  border-color: var(--pkkm-primary);
}
.btn-outline-primary:hover {
  background-color: var(--pkkm-primary);
  border-color: var(--pkkm-primary);
  color: #fff;
}
.bg-primary { background-color: var(--pkkm-primary) !important; }
.text-primary { color: var(--pkkm-primary) !important; }
a { color: var(--pkkm-primary); }
a:hover { color: var(--pkkm-primary-dark); }
.navbar-dark.bg-primary { background-color: var(--pkkm-primary) !important; }
.form-control:focus, .form-select:focus {
  border-color: var(--pkkm-primary);
  box-shadow: 0 0 0 .2rem rgba(4, 122, 58, .15);
}
.nav-tabs .nav-link.active {
  color: var(--pkkm-primary);
  border-bottom-color: var(--pkkm-primary);
}

.card {
  border: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.card-header {
  background: #fff;
  border-bottom: 1px solid #e8efe9;
  font-weight: 600;
}

.komponen-card {
  border-left: 4px solid var(--pkkm-primary);
}
.sub-aspek-block { background: #fff; }
.sub-aspek-block:last-child { border-bottom: 0 !important; }
.sub-aspek-header { border-left: 3px solid var(--pkkm-primary); font-size: .9rem; }
.sub-aspek-header strong { color: var(--pkkm-primary); }

.aspek-row {
  padding: .55rem .75rem .6rem 1.5rem;
  border-bottom: 1px solid #f0f3f8;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.aspek-row:hover { background: #fafcfa; }
.aspek-row:last-child { border-bottom: 0; }

.skor-pill {
  display: inline-flex;
  gap: .25rem;
  flex-shrink: 0;
}
.skor-pill input[type=radio] { display: none; }
.skor-pill label {
  display: inline-block;
  min-width: 2.2rem;
  text-align: center;
  padding: .25rem .5rem;
  border: 1px solid #ced4da;
  border-radius: .35rem;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-size: .85rem;
  background: #fff;
  margin-bottom: 0;
}
.skor-pill input:checked + label {
  background: var(--pkkm-primary);
  color: #fff;
  border-color: var(--pkkm-primary);
}

.nilai-akhir-box {
  background: linear-gradient(135deg, var(--pkkm-primary), #06a04c);
  color: white;
  border-radius: .5rem;
}

.kamad-card {
  transition: transform .15s, box-shadow .15s;
  border: 1px solid #e8efe9;
}
.kamad-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(4, 122, 58, .15);
  border-color: var(--pkkm-primary);
}

.badge-status-belum { background: #e9ecef; color: #6c757d; }
.badge-status-sebagian { background: #fff3cd; color: #997404; }
.badge-status-selesai { background: #d1e7dd; color: #0f5132; }

.sebutan-amat-baik { color: #0f5132; font-weight: 700; }
.sebutan-baik      { color: #055160; font-weight: 700; }
.sebutan-cukup     { color: #997404; font-weight: 700; }
.sebutan-sedang    { color: #842029; font-weight: 700; }
.sebutan-kurang    { color: #c0392b; font-weight: 700; }

.text-tiny { font-size: .75rem; }
.cursor-pointer { cursor: pointer; }

.bukti-thumb {
  width: 64px; height: 64px;
  object-fit: cover;
  border-radius: .25rem;
  border: 1px solid #e8efe9;
}

@media (max-width: 767px) {
  .aspek-row {
    flex-direction: column;
    gap: .35rem;
    padding: .65rem;
  }
  .aspek-row .skor-pill { align-self: flex-end; }
  .skor-pill label {
    min-width: 2.5rem;
    padding: .35rem .6rem;
  }
}

@media print {
  .no-print, nav, footer, .navbar { display: none !important; }
  body { background: white; font-size: 11pt; }
  .container-fluid { max-width: 100%; padding: 0; }
  .page-break { page-break-after: always; }
  .card { box-shadow: none; border: 1px solid #ddd; }
  .print-header { text-align: center; margin-bottom: 1rem; }
  .print-table { width: 100%; border-collapse: collapse; }
  .print-table th, .print-table td { border: 1px solid #444; padding: .35rem .5rem; }
  .print-only { display: block !important; }
  body.is-trial-print::before{content:'TRIAL';position:fixed;top:50%;left:50%;transform:translate(-50%,-50%) rotate(-30deg);font-size:8rem;font-weight:900;color:rgba(220,38,38,.18) !important;pointer-events:none;z-index:9998;letter-spacing:1rem;-webkit-print-color-adjust:exact}
  body.is-trial-print::after{content:'DOKUMEN VERSI TRIAL \2014  TIDAK SAH UNTUK PENGGUNAAN RESMI';position:fixed;top:6px;left:0;right:0;text-align:center;font-size:9pt;color:rgba(220,38,38,.75);font-weight:700;letter-spacing:.1em;pointer-events:none;z-index:9999}
}

/* ===== Laporan Lengkap PKKM ===== */
.ll-doc {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  color: #000;
  font-family: 'Times New Roman', Times, serif;
  font-size: 12pt;
  line-height: 1.6;
  padding: 1rem;
}
.ll-page {
  background: #fff;
  padding: 2.5rem 3rem;
  margin-bottom: 1.5rem;
  min-height: 27cm;
  page-break-after: always;
  border: 1px solid #ddd;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
.ll-page:last-child { page-break-after: auto; }
.ll-h {
  text-align: center;
  font-weight: bold;
  font-size: 14pt;
  margin: 1rem 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ll-h3 {
  font-weight: bold;
  font-size: 12pt;
  margin: 1rem 0 .5rem;
}
.ll-doc p { text-align: justify; margin-bottom: .8rem; }
.ll-ol { padding-left: 1.5rem; }
.ll-ol li { margin-bottom: .35rem; text-align: justify; }
.ll-cover { display: flex; flex-direction: column; }
.ll-cover-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-align: center;
  flex: 1;
}
.ll-cover-instansi {
  font-weight: bold;
  font-size: 13pt;
  line-height: 1.4;
  border-bottom: 3px double #000;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.ll-cover-title {
  font-size: 24pt;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 1px;
  margin: 2.5rem 0 1.5rem;
}
.ll-cover-sub {
  font-size: 14pt;
  font-weight: bold;
  margin-bottom: 3rem;
  padding: .5rem 1rem;
  border: 2px solid #000;
  display: inline-block;
}
.ll-cover-identitas {
  margin: 2rem 0;
  font-size: 12pt;
  line-height: 1.7;
}
.ll-cover-identitas .ll-cover-nama {
  font-size: 16pt;
  font-weight: bold;
  margin: .25rem 0;
}
.ll-cover-bot {
  margin-top: 3rem;
  font-size: 12pt;
}
.ll-cover-pengawas { font-size: 14pt; margin: .35rem 0; text-decoration: underline; }
.ll-id-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.ll-id-table td {
  padding: .25rem .5rem;
  vertical-align: top;
}
.ll-table {
  width: 100%;
  border-collapse: collapse;
  margin: .8rem 0 1rem;
  font-size: 11pt;
}
.ll-table th, .ll-table td {
  border: 1px solid #444;
  padding: .35rem .55rem;
}
.ll-table thead th {
  background: #e8f5e9;
  font-weight: bold;
  text-align: center;
}
.ll-row-total td, .ll-row-total th {
  background: #fff3cd;
  font-weight: bold;
}
.ll-sub-aspek-row td {
  background: #f0f0f0;
}
.ll-toc {
  width: 100%;
  border-collapse: collapse;
}
.ll-toc td {
  padding: .3rem .5rem;
  vertical-align: top;
}
.ll-ttd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  page-break-inside: avoid;
}
.ll-ttd-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 180px;
  font-size: 12pt;
}
.ll-ttd-spacer { flex: 1 1 auto; min-height: 5rem; }
.ll-ttd-name { font-weight: bold; text-decoration: underline; margin-top: .3rem; }
.ll-ttd-page {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media print {
  .ll-page {
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 1cm 1.5cm;
    min-height: auto;
  }
  .ll-doc { padding: 0; max-width: none; }
}

/* Saat list-group-item aktif (warna biru), tombol icon di dalamnya tetap terlihat */
.list-group-item.active [data-action="edit-periode"] {
  color: #fff !important;
  opacity: .95;
}
.list-group-item.active [data-action="del-periode"] {
  color: #ffd6d3 !important;
  opacity: 1;
}
.list-group-item.active [data-action="edit-periode"]:hover {
  color: #fff !important;
  text-shadow: 0 0 2px rgba(0,0,0,.3);
}
.list-group-item.active [data-action="del-periode"]:hover {
  color: #ffe5e3 !important;
}

/* Tombol gradient ala report — pakai class .btn-gradient-print / .btn-gradient-excel */
.btn-gradient-print,
.btn-gradient-excel {
  border: none;
  color: #fff !important;
  font-weight: 500;
  font-size: .75rem;
  line-height: 1.1;
  border-radius: 999px;
  padding: .3rem .8rem;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .18);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.btn-gradient-print {
  background: linear-gradient(90deg, #14b8a6 0%, #0ea5e9 50%, #2563eb 100%);
}
.btn-gradient-excel {
  background: linear-gradient(90deg, #16a34a 0%, #0ea5e9 100%);
}
.btn-gradient-print:hover,
.btn-gradient-excel:hover,
.btn-gradient-print:focus,
.btn-gradient-excel:focus {
  color: #fff !important;
  filter: brightness(1.06);
  box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
  transform: translateY(-1px);
}
.btn-gradient-print:active,
.btn-gradient-excel:active {
  transform: translateY(0);
  filter: brightness(.98);
}
.btn-gradient-print i,
.btn-gradient-excel i { font-size: .85rem; }

/* TTD layout - rapi & sejajar di tampilan layar dan cetak */
.ttd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
  page-break-inside: avoid;
  align-items: stretch;
}
.ttd-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 180px;
}
.ttd-tempat { min-height: 1.5rem; }
.ttd-jabatan { min-height: 2.8rem; line-height: 1.4; }
.ttd-spacer { flex: 1 1 auto; min-height: 4.5rem; height: 4.5rem; }
.ttd-name { font-weight: 700; text-decoration: underline; }
.ttd-nip { min-height: 1.4rem; }

pre.bukti-fisik {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  border-left: 3px solid var(--pkkm-accent);
  background: #fffdf5 !important;
  color: #4a3700;
  font-size: .85rem;
  margin: 0;
}

.toast-fixed {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1080;
  min-width: 240px;
}

.save-status-saved { color: var(--pkkm-primary); }
.save-status-saving { color: #888; }
.save-status-error { color: var(--pkkm-danger); }

/* ===== Global Page Elegance ===== */

/* Page header pattern */
.page-header {
  background: linear-gradient(135deg, #047a3a 0%, #035a2a 100%);
  color: #fff;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 16px rgba(4,122,58,.18);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 100px; height: 100px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.page-header h4, .page-header h5, .page-header h6 {
  margin: 0;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.page-header .page-header-sub {
  font-size: .8rem;
  opacity: .85;
  position: relative;
  z-index: 1;
}
.page-header .btn {
  position: relative;
  z-index: 1;
}

/* Upgrade all cards to elegant style */
.card {
  border: 1px solid #eef2f0;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  overflow: hidden;
}
.card-header {
  background: linear-gradient(135deg, #f8fdf9 0%, #eef7f0 100%);
  border-bottom: 2px solid var(--pkkm-primary-light);
  font-weight: 700;
  color: var(--pkkm-primary);
  padding: .65rem 1.25rem;
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.card-header i { color: var(--pkkm-primary); }
.card-body { padding: 1.25rem; }

/* Tables: clean modern */
.table {
  margin-bottom: 0;
  font-size: .85rem;
}
.table > :not(caption) > * > * {
  padding: .6rem .75rem;
}
.table thead th {
  background: #f0f6f2;
  border-bottom: 2px solid var(--pkkm-primary-light);
  font-weight: 700;
  color: var(--pkkm-primary-dark);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .3px;
  white-space: nowrap;
}
.table-hover > tbody > tr {
  transition: background .15s;
}
.table-hover > tbody > tr:hover {
  background: #f4faf5;
}

/* Buttons: more polished */
.btn {
  border-radius: 8px;
  font-weight: 600;
  font-size: .85rem;
  transition: all .18s;
}
.btn-primary {
  background: linear-gradient(135deg, #047a3a 0%, #035a2a 100%);
  border-color: #035a2a;
  box-shadow: 0 2px 6px rgba(4,122,58,.2);
}
.btn-primary:hover {
  background: #035a2a;
  border-color: #024a22;
  box-shadow: 0 4px 12px rgba(4,122,58,.28);
  transform: translateY(-1px);
}
.btn-outline-primary {
  color: var(--pkkm-primary);
  border-color: var(--pkkm-primary);
}
.btn-outline-primary:hover {
  background: var(--pkkm-primary);
  border-color: var(--pkkm-primary);
}
.btn-sm { font-size: .78rem; }

/* Alerts: cleaner */
.alert {
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: .85rem;
}
.alert-info {
  background: #e8f5fd;
  border-color: #b3dffb;
  color: #0a5a8a;
}
.alert-warning {
  background: #fff8e8;
  border-color: #ffe5a0;
  color: #7a5e00;
}
.alert-success {
  background: #e8f8ee;
  border-color: #a8e6b8;
  color: #1a6a35;
}
.alert-danger {
  background: #fde8e8;
  border-color: #f5a8a8;
  color: #8a1a1a;
}

/* Badges: softer */
.badge {
  border-radius: 6px;
  font-weight: 600;
  font-size: .72rem;
  padding: .3em .55em;
}

/* List groups */
.list-group-item {
  border-color: #eef2f0;
  padding: .75rem 1.25rem;
  transition: background .15s;
}
.list-group-item:hover {
  background: #f4faf5;
}

/* Form controls: modern */
.form-control, .form-select {
  border-radius: 8px;
  border-color: #dde3df;
  font-size: .85rem;
  padding: .45rem .75rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--pkkm-primary);
  box-shadow: 0 0 0 .2rem rgba(4,122,58,.12);
}

/* Modal */
.modal-content {
  border-radius: 14px;
  border: none;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
}
.modal-header {
  background: linear-gradient(135deg, #047a3a 0%, #035a2a 100%);
  color: #fff;
  border-radius: 14px 14px 0 0;
  padding: .75rem 1.25rem;
}
.modal-header .btn-close {
  filter: brightness(0) invert(1);
}
.modal-title { font-weight: 700; font-size: .95rem; }
.modal-body { padding: 1.25rem; }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 2.5rem 1rem;
  color: #999;
}
.empty-state i {
  font-size: 2.5rem;
  opacity: .3;
  margin-bottom: .5rem;
  display: block;
}

/* Responsive table wrapper */
.table-responsive { border-radius: 12px; }
