:root{
  --bg:#0f1115;
  --card:#171a21;
  --muted:#9aa3b2;
  --text:#e7eaf0;
  --accent:#66ccff;
  --border:#2a2f3a;
  --ok:#46d369;
  --warn:#ffcc66;
  --bad:#ff5c5c;
  --button:#66ccff;
  --buttonText:#000;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
}

.wrap{
  max-width:1000px;
  margin:40px auto;
  padding:0 20px;
}

/* ✅ header layout (fix Updated alignment) */
.top{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  border-bottom:1px solid var(--border);
  padding-bottom:15px;
  margin-bottom:20px;

  flex-wrap:wrap;
  gap:8px 16px;
}

h1{
  margin:0;
  font-size:22px;
  color:var(--accent);
}

.meta{
  color:var(--muted);
  font-size:13px;

  margin-left:auto;
  white-space:nowrap;
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:10px;
  padding:18px;
}

.card h2{
  margin:0 0 10px 0;
  font-size:14px;
  color:var(--muted);
  letter-spacing:1px;
}

.row{
  display:grid;
  grid-template-columns:16px 1fr;
  gap:12px;
  padding:10px 0;
  border-top:1px solid var(--border);
}

.row:first-child{ border-top:none; }

.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  margin-top:5px;
  background:var(--warn);
}
.dot.ok{ background:var(--ok); }
.dot.bad{ background:var(--bad); }

.service{ font-weight:bold; }
.desc{ color:var(--muted); font-size:13px; margin-top:4px; }
.tags{ margin-top:6px; font-size:12px; color:var(--muted); }
.pill{
  display:inline-block;
  border:1px solid var(--border);
  padding:2px 8px;
  border-radius:20px;
  margin-right:6px;
}

/* Responsive header layout */

@media (max-width:600px){

  .top{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .meta{
    margin-left:0;
    margin-top:6px;
    text-align:center;
  }

}