/* tlsrpt-specific additions on top of the vendored style.css: the readiness
   tick panel, verdict line, generator block, and the You-are-here card color. */


#readiness {
  margin: 14px 0 6px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 12px;
  background: rgba(10, 37, 64, 0.45);
}
#readiness h3 { margin: 0 0 10px; font-size: 15px; }

.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 7px 0; font-size: 14px; line-height: 1.45;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
}
.ticks li:last-child { border-bottom: 0; }
.tick-mark {
  flex: 0 0 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; margin-top: 2px;
}
.tick-ok .tick-mark { background: rgba(46, 204, 113, 0.18); color: #2ecc71; }
.tick-no .tick-mark { background: rgba(231, 76, 60, 0.18); color: #e74c3c; }
.tick-warn .tick-mark { background: rgba(241, 196, 15, 0.16); color: #f1c40f; }
.tick-detail { color: rgba(255, 255, 255, 0.62); font-size: 13px; word-break: break-word; }
.tick-detail code, .ticks code { font-family: 'DM Mono', monospace; font-size: 12.5px; }

.verdict {
  margin: 12px 0 0; padding: 10px 14px; border-radius: 8px;
  font-size: 14px; line-height: 1.5;
}
.verdict-enforce { background: rgba(46, 204, 113, 0.12); border: 1px solid rgba(46, 204, 113, 0.3); }
.verdict-testing { background: rgba(0, 212, 255, 0.09); border: 1px solid rgba(0, 212, 255, 0.25); }
.verdict-broken  { background: rgba(231, 76, 60, 0.10); border: 1px solid rgba(231, 76, 60, 0.3); }
.verdict-none    { background: rgba(241, 196, 15, 0.08); border: 1px solid rgba(241, 196, 15, 0.25); }

.gen { margin-top: 12px; }
.gen summary {
  cursor: pointer; font-weight: 600; color: #00d4ff;
  padding: 6px 0; font-size: 14px;
}
.gen pre.policy {
  font-family: 'DM Mono', monospace; font-size: 13px;
  background: rgba(0, 0, 0, 0.35); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px; padding: 12px 14px; overflow-x: auto; white-space: pre;
}
