<!doctype html>
<html>
<head>
  <meta charset="utf-8" />
  <style>
    body { font-family: system-ui, sans-serif; width: 250px; margin: 0; padding: 14px; }
    h1 { font-size: 14px; margin: 0 0 10px; }
    .row { display: flex; align-items: center; gap: 8px; font-size: 13px; }
    .dot { width: 10px; height: 10px; border-radius: 50%; background: #c0392b; }
    .dot.on { background: #27ae60; }
    .muted { color: #888; font-size: 11px; margin-top: 8px; }
    button { margin-top: 14px; width: 100%; padding: 10px; font-size: 14px; font-weight: 600;
      border: none; border-radius: 8px; background: #1769ff; color: #fff; cursor: pointer; }
    button.rec { background: #c0392b; }
    button:disabled { opacity: .6; cursor: default; }
    #recmsg { font-size: 11px; color: #888; margin-top: 6px; min-height: 14px; }
  </style>
</head>
<body>
  <h1>Adom for Chrome &amp; Edge</h1>
  <div class="row"><span id="dot" class="dot"></span><span id="status">checking…</span></div>
  <div class="muted" id="detail"></div>
  <button id="rec">⏺ Record this tab</button>
  <div id="recmsg"></div>
  <script src="popup.js"></script>
</body>
</html>