
    :root{
      --bg:#0b0f14;
      --card:#111826;
      --card2:#0e1522;
      --purple:#a855f7; /* fiolet */
      --border:rgba(255,255,255,.10);
      --text:#e7eefc;
      --muted:rgba(231,238,252,.70);
      --muted2:rgba(231,238,252,.55);
      --accent:#3b82f6;
      --danger:#ef4444;
      --ok:#22c55e;
      --warn:#f59e0b;
      --shadow: 0 18px 60px rgba(0,0,0,.55);
      --radius:22px;
    }
    *{box-sizing:border-box}
    body{
      margin:0;
      font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial;
      color:var(--text);
      background:
        radial-gradient(1200px 600px at 20% -10%, rgba(59,130,246,.25), transparent 60%),
        radial-gradient(900px 500px at 110% 10%, rgba(239,68,68,.18), transparent 55%),
        radial-gradient(700px 500px at 40% 120%, rgba(34,197,94,.14), transparent 55%),
        var(--bg);
      min-height:100vh;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:flex-start;
      padding:28px;
    }
    .wrap{
  width: min(1600px, 100%);
}

.tableWrap{
  overflow-x: auto;
}

    .card{
      background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
      border:1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 26px;
      position:relative;
      overflow:hidden;
    }
    .card:before{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(900px 240px at 30% 0%, rgba(59,130,246,.22), transparent 60%);
      pointer-events:none;
    }
    .header{position:relative; display:flex; align-items:flex-start; justify-content:space-between; gap:16px;}
    h1{
      margin:0 0 8px;
      font-size: 34px;
      letter-spacing:.2px;
    }
    .sub{margin:0; color:var(--muted); line-height:1.4}
    .btns{display:flex; gap:10px; align-items:center; flex-wrap:wrap; justify-content:flex-end;}
    button{
      border:1px solid var(--border);
      background: rgba(255,255,255,.06);
      color: var(--text);
      padding: 10px 14px;
      border-radius: 14px;
      font-weight:700;
      cursor:pointer;
    }
    button.primary{background: rgba(59,130,246,.18); border-color: rgba(59,130,246,.40);}
    button.danger{background: rgba(239,68,68,.16); border-color: rgba(239,68,68,.45);}
    button:hover{filter:brightness(1.07)}
    .row{position:relative; display:grid; grid-template-columns: 1.2fr 1fr 1fr auto; gap:12px; margin-top:18px;}
    .field{
      border:1px solid var(--border);
      background: rgba(0,0,0,.18);
      border-radius: 14px;
      padding: 10px 12px;
      display:flex; gap:10px; align-items:center;
    }
    .field label{font-size:12px; color:var(--muted2); min-width:78px}
    .field input, .field select{
      width:100%;
      background:transparent;
      border:none; outline:none;
      color:var(--text);
      font-size:14px;
    }
    .meta{position:relative; margin-top:10px; color:var(--muted2); font-size:12px; display:flex; gap:12px; flex-wrap:wrap}
    .tableWrap{position:relative; margin-top:16px; border:1px solid var(--border); border-radius:18px; overflow:hidden;}
    table{width:100%; border-collapse:collapse; background: rgba(0,0,0,.20);}
    thead th{
      text-align:left;
      padding:12px 12px;
      font-size:12px;
      color:var(--muted2);
      border-bottom:1px solid var(--border);
      background: rgba(255,255,255,.03);
    }
    tbody td{
      padding:12px 12px;
      border-bottom:1px solid rgba(255,255,255,.06);
      vertical-align:top;
      font-size:13px;
      color:var(--text);
    }
    tbody tr:hover{background: rgba(255,255,255,.03);}
    .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:6px 10px; border-radius:999px;
      border:1px solid var(--border);
      background: rgba(255,255,255,.05);
      font-weight:800; font-size:12px;
      white-space:nowrap;
    }
    .dot{width:8px; height:8px; border-radius:50%;}
    .ok .dot{background:var(--ok)}
    .purple .dot{background:var(--purple)}
    .info .dot{background:var(--accent)}
    .warn .dot{background:var(--warn)}
    .bad .dot{background:var(--danger)}
    .muted{color:var(--muted)}
    .path{word-break:break-all; color:rgba(231,238,252,.90)}
    .small{font-size:12px; color:var(--muted)}
    .dl-link{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; font-size:12px; color:var(--accent); text-decoration:none; word-break:break-all}
    .dl-link:hover{text-decoration:underline}
    .right{
  white-space:normal;
  max-width:320px;
}
    @media (max-width: 900px){
      .row{grid-template-columns:1fr; }
      .btns{justify-content:flex-start}
    }
