body {
  background:#0f1115;
  color:#e5e7eb;
  font-family:system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.container {
  max-width:1200px;
  margin:auto;
  padding:30px 20px;
}

.center { text-align:center; }
.muted { color:#9ca3af; }

.logo {
  width:110px;
  margin-bottom:10px;
}

.card {
  background:#161a22;
  padding:26px;
  border-radius:14px;
  margin-bottom:26px;
}

h1, h2 {
  margin-top:0;
}

/* SCORE */
.score-card-horizontal {
  display:flex;
  flex-direction:column;
  gap:14px;
}

.score-main {
  display:flex;
  align-items:baseline;
  gap:12px;
}

.score-number {
  font-size:56px;
  font-weight:700;
}

.score-divider {
  font-size:20px;
  color:#9ca3af;
}

.score-grade {
  margin-left:auto;
  font-weight:700;
}

.score-grade.excellent { color:#22c55e; }
.score-grade.moderate  { color:#facc15; }
.score-grade.high-risk { color:#ef4444; }

.score-progress {
  background:#1f2937;
  border-radius:10px;
  height:12px;
  overflow:hidden;
}

.score-progress-bar {
  background:#3b82f6;
  height:100%;
}

.score-desc {
  font-size:14px;
}

/* INDICATORS */
.indicator-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(150px,1fr));
  gap:16px;
  margin-bottom:26px;
}

.indicator {
  background:#111827;
  padding:16px;
  border-radius:12px;
  text-align:center;
}

.indicator span {
  display:block;
  margin-top:6px;
  font-weight:600;
}

/* TABLE */
.table-wrap {
  overflow-x:auto;
}

.audit-table {
  width:100%;
  border-collapse:collapse;
}

.audit-table th,
.audit-table td {
  padding:16px;
  border-bottom:1px solid #374151;
  vertical-align:top;
}

.audit-table th {
  text-align:left;
  color:#9ca3af;
  font-weight:600;
  white-space:nowrap;
}

.audit-table td {
  line-height:1.6;
  white-space:normal;
  word-break:break-word;
}
/* Kolom Status agar tidak pecah baris */
.audit-table td:nth-child(2),
.audit-table th:nth-child(2) {
  font-size: 13px;        /* diperkecil sedikit */
  white-space: nowrap;   /* cegah turun baris */
  text-align: center;
}

/* IMPACT CELL */
.impact-cell {
  font-size:15px;
  line-height:1.6;
  color:#f3f4f6;
}

/* INTERPRETATION */
.interpretation {
  padding-left:18px;
}

.interpretation li {
  margin-bottom:12px;
  line-height:1.6;
}

/* BUTTON */
.btn {
  display:inline-block;
  padding:14px 24px;
  background:#2563eb;
  color:#ffffff;
  border-radius:10px;
  text-decoration:none;
}
