:root{
  --bg:#ffffff;
  --fg:#111827;
  --muted:#6b7280;
  --border:#e5e7eb;
  --panel:#fcfcfc;
  --ok:#065f46;
  --soon:#92400e;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  background: var(--bg);
  color: var(--fg);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 26px 18px;
}

.muted{ color: var(--muted); }
.small{ font-size: 12px; }
.lead{ margin-top: 10px; line-height: 1.5; }

.topline{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap: 10px;
  font-size: 14px;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color: inherit;
}

.mark{
  width: 26px;
  height: 26px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-weight: 800;
}

.brandName{
  font-weight: 900;
}

.sep{ opacity: 0.5; }
.path{ font-weight: 900; }

.panel{
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 10px;
  overflow:hidden;
}

.panelHead{
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  background: #fff;
  font-size: 12px;
}

.right{ text-align:right; }

.dir{
  display:flex;
  flex-direction:column;
}

.row{
  display:grid;
  grid-template-columns: 120px 1fr 120px;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  text-decoration:none;
  color: inherit;
}

.row:last-child{ border-bottom:none; }

.row:hover{
  background: #ffffff;
}

.row.disabled{
  opacity: 0.7;
  cursor: default;
}

.row.disabled:hover{
  background: transparent;
}

.name{
  font-weight: 900;
}

.desc{
  overflow:hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status{
  text-align:right;
  font-weight: 900;
}

.status.ok{ color: var(--ok); }
.status.soon{ color: var(--soon); }

.note{
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  line-height: 1.5;
}

.footer{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  border-top: 1px solid var(--border);
  margin-top: 18px;
  padding-top: 12px;
}

@media (max-width: 720px){
  .row{
    grid-template-columns: 90px 1fr;
    grid-template-rows: auto auto;
  }
  .status{
    grid-column: 1 / -1;
    text-align:left;
    opacity: 0.85;
  }
  .desc{
    white-space: normal;
  }
}
