:root{
  --pp-primary: #2d8cff;
  --pp-primary-600: #1c6dde;
  --pp-bg: #f4f9ff;
  --pp-card: #ffffff;
  --pp-border: #e6f0ff;
}

html, body { height: 100%; }
body{
    
  background: var(--pp-bg);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans";
}

.shadow-soft{
  box-shadow: 0 8px 24px rgba(0, 56, 112, 0.08);
  border-radius: 14px;
}

.card { border-radius: 14px; }
.card .card-title { font-weight: 600; }

.btn-primary{
  background-image: linear-gradient(135deg, #5db2ff, #3a8bff);
  border: none;
}
.btn-primary:hover{ background-image: linear-gradient(135deg, #3fa1ff, #2a7af0); }
.btn-outline-primary{ border-color: var(--pp-primary); color: var(--pp-primary); }
.btn-outline-primary:hover{ background: var(--pp-primary); color: #fff; }

.form-control, .form-select{
  border-radius: 10px;
  border-color: var(--pp-border);
}
.form-control:focus{
  border-color: var(--pp-primary);
  box-shadow: 0 0 0 .2rem rgba(45,140,255,.15);
}

.progress-thin{
  height: .5rem;
  border-radius: 6px;
  background: #eaf2ff;
}

.results pre{
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: .95rem;
}

/* Floating support button */
.support-me{
  display: inline-flex;
  position: fixed; right: 12px; bottom: 12px;
  width: 20vw; max-width: 240px; min-width: 200px; z-index: 1000;
}
.support-me img{ width: 100%; height: auto; }

/* Table/hover utilities (shared) */
.table-hover tbody tr:hover{ background: #f7fbff; }
.badge-safe{ background: #27ae60; }
.badge-vuln{ background: #e74c3c; }
.badge-err{ background: #6c757d; }

    /* Tambahan kecil selaras tema sedia ada */
    h1,.pp-title{color:var(--pp-primary);}
    .kpi .card{background:linear-gradient(180deg,#fff,var(--pp-bg));border:1px solid var(--pp-border);}
    .sticky-actions{position:sticky;top:0;z-index:5;background:#fff;padding:.75rem;border-bottom:1px solid var(--pp-border);border-top-left-radius:14px;border-top-right-radius:14px}
    .page-chip{min-width:40px}
    .skeleton{background:linear-gradient(90deg,#eef4ff 25%,#f7fbff 37%,#eef4ff 63%);background-size:400% 100%;animation:skeleton 1.4s ease infinite}
    @keyframes skeleton{0%{background-position:100% 0}100%{background-position:0 0}}
    .table thead th{white-space:nowrap}
    .table-sm td,.table-sm th{padding:.5rem .6rem}