:root {
  --sidebar-width: 260px;
  --sidebar-collapsed-width: 78px;
  --primary: #1e3a5f;
  --primary-light: #2d5a8a;
  --accent: #74937b;
  --accent-dark: #5a7561;
  --bg: #f4f6f9;
  --card: #ffffff;
  --border: #e2e8f0;
  --text: #1a202c;
  --text-muted: #64748b;
  --success: #22c55e;
  --danger: #ef4444;
  --warning: #f59e0b;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

/* Login */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8eef5 0%, #d4dce8 100%);
  padding: 1rem;
}

.login-card {
  background: var(--card);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--border);
}

.login-logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
}

.login-card h1 {
  font-size: 1rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.75rem;
  color: var(--primary);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-control {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(45, 90, 138, 0.15);
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-color: #fff;
  padding-right: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 0.75rem;
}

.login-card .btn-primary {
  width: 100%;
}

.page-body .btn-primary {
  width: auto;
}

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

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

.btn-success:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
}

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

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

.btn-danger:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-sm {
  padding: 0.35rem 0.65rem;
  font-size: 0.8rem;
}

.alert {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.alert-danger {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.alert-success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

/* App layout */
.app-wrapper {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: var(--sidebar-width);
  background: var(--card);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
}

.sidebar-brand {
  padding: 0.7rem 1.25rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sidebar-toggle {
  border: 1px solid var(--border);
  background: #f8fafc;
  color: #667085;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 0.95rem;
  margin-left: auto;
}

.sidebar-toggle:hover {
  background: #eef2f7;
}

.sidebar-brand .brand-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.sidebar-brand h2 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.sidebar-brand p {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.sidebar-nav {
  flex: 1;
  padding: 1rem 0.75rem;
  overflow-y: auto;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  transition: all 0.2s;
}

.nav-item:hover {
  background: var(--bg);
  color: var(--primary);
}

.nav-item.active {
  background: rgba(30, 58, 95, 0.1);
  color: var(--primary);
  font-weight: 600;
}

.nav-item i {
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.sidebar-footer {
  padding: 1rem 0.75rem;
  border-top: 1px solid var(--border);
}

.nav-item.logout {
  color: var(--danger);
}

.nav-item.logout:hover {
  background: #fef2f2;
  color: var(--danger);
}

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

body.sidebar-collapsed .sidebar {
  width: var(--sidebar-collapsed-width);
}

body.sidebar-collapsed .main-content {
  margin-left: var(--sidebar-collapsed-width);
  width: calc(100% - var(--sidebar-collapsed-width));
}

body.sidebar-collapsed .sidebar-brand {
  padding: 0.7rem 0.45rem 1rem;
  justify-content: center;
}

body.sidebar-collapsed .sidebar-brand .brand-text {
  display: none;
}

body.sidebar-collapsed .sidebar-brand .brand-icon {
  display: none;
}

body.sidebar-collapsed .sidebar-toggle {
  margin-left: 0;
}

body.sidebar-collapsed .sidebar-nav,
body.sidebar-collapsed .sidebar-footer {
  padding-left: 0.45rem;
  padding-right: 0.45rem;
}

body.sidebar-collapsed .nav-item {
  justify-content: center;
  gap: 0;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
}

body.sidebar-collapsed .nav-item span {
  display: none;
}

.page-header {
  padding: 0.4rem 2rem 0;
}

.page-header h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
}

.page-header .subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.page-body {
  padding: 1.5rem 2rem 2rem;
  flex: 1;
}

.site-footer {
  margin-top: auto;
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.stat-card {
  background: var(--card);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stat-card .stat-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stat-card .stat-info h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

.stat-card .stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.stat-card.total .stat-icon {
  background: rgba(30, 58, 95, 0.1);
  color: var(--primary);
}

.stat-card.layak .stat-icon {
  background: rgba(34, 197, 94, 0.1);
  color: var(--success);
}

.stat-card.tidak .stat-icon {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
}

/* Table card */
.card {
  background: var(--card);
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.card-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.card-header h2 {
  font-size: 1.1rem;
  font-weight: 700;
}

.card-body {
  padding: 1.25rem 1.5rem 0.75rem 1.5rem;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.search-box {
  flex: 1;
  min-width: 200px;
  position: relative;
}

.search-box i {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.search-box input {
  width: 100%;
  padding: 0.6rem 0.85rem 0.6rem 2.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
}

.table-responsive {
  overflow-x: auto;
}

table.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

table.data-table th {
  background: #f8fafc;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

table.data-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

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

#tableSiswa th:nth-child(1),
#tableSiswa td:nth-child(1) {
  position: sticky;
  left: 0;
  z-index: 3;
  background: #fff;
  min-width: 44px;
  width: 44px;
  text-align: center;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

#tableSiswa th:nth-child(2),
#tableSiswa td:nth-child(2) {
  position: sticky;
  left: 44px;
  z-index: 3;
  background: #fff;
  min-width: 52px;
}

#tableSiswa th:nth-child(3),
#tableSiswa td:nth-child(3) {
  position: sticky;
  left: 96px;
  z-index: 3;
  background: #fff;
  min-width: 140px;
  box-shadow: 2px 0 0 #e5e7eb, 6px 0 10px -8px rgba(15, 23, 42, 0.25);
}

#tableSiswa thead th:nth-child(1),
#tableSiswa thead th:nth-child(2),
#tableSiswa thead th:nth-child(3) {
  z-index: 4;
  background: #f8fafc;
}

#tableLaporan th:nth-child(1),
#tableLaporan td:nth-child(1) {
  position: sticky;
  left: 0;
  z-index: 3;
  background: #fff;
  min-width: 52px;
}

#tableLaporan th:nth-child(2),
#tableLaporan td:nth-child(2) {
  position: sticky;
  left: 52px;
  z-index: 3;
  background: #fff;
  min-width: 140px;
  box-shadow: 2px 0 0 #e5e7eb, 6px 0 10px -8px rgba(15, 23, 42, 0.25);
}

#tableLaporan thead th:nth-child(1),
#tableLaporan thead th:nth-child(2) {
  z-index: 4;
  background: #f8fafc;
}

#tableLaporan tbody tr:hover td:nth-child(1),
#tableLaporan tbody tr:hover td:nth-child(2),
#tableSiswa tbody tr:hover td:nth-child(1),
#tableSiswa tbody tr:hover td:nth-child(2),
#tableSiswa tbody tr:hover td:nth-child(3) {
  background: #fafbfc;
}

.table-checkbox {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
  vertical-align: middle;
}

.form-control.is-invalid {
  border-color: #b91c1c;
  box-shadow: 0 0 0 1px rgba(185, 28, 28, 0.15);
}

.form-validation-alert {
  margin-bottom: 1rem;
}

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

.badge-layak {
  background: #dcfce7;
  color: #166534;
}

.badge-tidak {
  background: #fee2e2;
  color: #991b1b;
}

.badge-aktif {
  background: #dcfce7;
  color: #166534;
}

.badge-belum {
  background: #f1f5f9;
  color: #64748b;
}

.stats-grid.dashboard-stats {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.stats-grid.dashboard-stats .stat-card {
  position: relative;
  padding-top: 1rem;
}

.stats-grid.dashboard-stats .stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
}

.stats-grid.dashboard-stats .stat-card.total .stat-icon {
  background: #eef0ff;
  color: #6a5ad7;
}

.stats-grid.dashboard-stats .stat-card.layak .stat-icon {
  background: #dff8e8;
  color: #23a566;
}

.stats-grid.dashboard-stats .stat-card.tidak .stat-icon {
  background: #ffe8eb;
  color: #df4d5a;
}

.stats-grid.dashboard-stats .stat-card.belum .stat-icon {
  background: #f0f2f4;
  color: #6b7280;
}

.dashboard-card {
  background: var(--card);
  border-color: var(--border);
  color: var(--text);
}

.dashboard-card p,
.dashboard-card .muted {
  color: var(--text-muted);
}

.stats-grid.dashboard-stats .stat-card .pct {
  margin-top: 0.2rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.stats-grid.dashboard-stats .stat-card.layak .pct {
  color: #22c55e;
}

.stats-grid.dashboard-stats .stat-card.tidak .pct {
  color: #ef4444;
}

.stats-grid.dashboard-stats .stat-card.belum .pct {
  color: var(--text-muted);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 1rem;
  margin-top: 1rem;
}

.dashboard-stack {
  display: grid;
  gap: 1rem;
}

.dashboard-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
}

.dashboard-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
}

.dashboard-card h3.text-center {
  text-align: center;
}

.donut-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.donut {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  margin-top: 0.35rem;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 38px;
  border-radius: 50%;
  background: var(--card);
}

.legend {
  display: grid;
  gap: 0.5rem;
  width: 100%;
  max-width: 340px;
}

.legend-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.legend-left {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.progress-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0.55rem;
  color: var(--text);
  font-weight: 600;
}

.progress-line {
  width: 100%;
  height: 16px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

.progress-line > span {
  display: block;
  height: 100%;
  background: #2d9a6d;
}

.mini-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.mini-table th,
.mini-table td {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.laporan-filters {
  margin-bottom: 0.5rem;
}

.laporan-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 0.65rem 0;
  flex-wrap: wrap;
}

.laporan-meta {
  margin: 0;
}

.laporan-card {
  margin-top: 0;
}

.laporan-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.65rem;
}

.laporan-card-header h2 {
  margin: 0;
}

.laporan-count {
  margin: 0;
  font-size: 0.9rem;
}

.laporan-export-btns {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.action-btns {
  display: flex;
  gap: 0.35rem;
}

.action-btns .btn-icon {
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.action-btns .btn-icon:hover {
  background: var(--bg);
  color: var(--primary);
}

.action-btns .btn-icon.delete:hover {
  color: var(--danger);
  border-color: #fecaca;
  background: #fef2f2;
}

/* Klasifikasi */
.klasifikasi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-card {
  padding: 1.5rem;
}

.form-card .form-group {
  margin-bottom: 1rem;
}

.hasil-card {
  padding: 1.5rem;
}

.hasil-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.status-box {
  background: var(--bg);
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.status-box .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.status-box .value {
  font-size: 1.75rem;
  font-weight: 700;
}

.status-box.layak .value {
  color: var(--success);
}

.status-box.tidak .value {
  color: var(--danger);
}

.prob-bar {
  margin-bottom: 1rem;
}

.prob-bar .prob-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.prob-bar .bar-track {
  height: 10px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}

.prob-bar .bar-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.5s ease;
}

.prob-bar.layak .bar-fill {
  background: var(--success);
}

.prob-bar.tidak .bar-fill {
  background: var(--danger);
}

/* Form 2 kolom */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 768px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .sidebar {
    transform: translateX(-100%);
  }

  .main-content {
    margin-left: 0;
    width: 100%;
  }

  body.sidebar-collapsed .sidebar {
    width: var(--sidebar-width);
  }

  body.sidebar-collapsed .sidebar-brand .brand-text,
  body.sidebar-collapsed .nav-item span {
    display: inline;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .donut-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.show {
  display: flex;
}

.modal {
  background: var(--card);
  border-radius: 12px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 1.1rem;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--text-muted);
}

.modal-body {
  padding: 1.5rem;
}

.modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.detail-list {
  list-style: none;
}

.detail-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.detail-list li span:first-child {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

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

.rules-box {
  background: #f0f7f1;
  border-left: 4px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.rules-box strong {
  display: block;
  margin-bottom: 0.25rem;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
}

.confirm-delete-modal {
  z-index: 400;
}

.delete-modal-card {
  max-width: 480px;
  text-align: center;
  padding: 1.25rem 1.1rem 1.1rem;
}

.delete-icon-wrap {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 4px solid #FFD1A4;
  color: #FFD1A4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin-bottom: 0.9rem;
}

.delete-modal-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
  color: #374151;
  font-weight: 700;
}

.delete-modal-card p {
  font-size: 0.9rem;
  color: #5b6470;
  margin-bottom: 1.15rem;
}

.delete-modal-actions {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
}

.delete-modal-actions .btn {
  min-width: 78px;
}

.delete-modal-actions .btn-danger {
  background: #ff1c1c;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  margin-bottom: 0;
  padding-bottom: 0.25rem;
}

.card-body:has(.table-responsive) {
  padding-bottom: 0;
}

.card-body:has(.pagination) {
  padding-bottom: 1rem;
}

.card-body .pagination {
  margin-top: 0.65rem;
}
