:root{
  --bg: #f4fbf4; --panel: #ffffff; --panel-2: #e6f4e7; --line: #cae7cc;
  --accent: #259d2b; --accent-soft: #c9e9ca; --accent-dim: #f0f8f0;
  --text: #142915; --muted: #4d804f; --muted-2: #94b896;
  --bad: #b3402f;
}

.content{ text-align: center; }

.url-row{ display: flex; gap: 10px; text-align: left; }
.url-row input{ flex: 1; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; font-family: 'JetBrains Mono', monospace; font-size: 14px; background: var(--panel-2); color: var(--text); }
.url-row input:focus{ outline: none; border-color: var(--accent); }

.status-circle-wrap{ margin: 26px 0 10px; }
.status-circle{ width: 130px; height: 130px; border-radius: 50%; margin: 0 auto; display: flex; align-items: center; justify-content: center; font-size: 42px; transition: background .3s ease; background: var(--panel-2); border: 4px solid var(--line); }
.status-circle.up{ background: rgba(37,157,43,0.12); border-color: var(--accent); }
.status-circle.down{ background: rgba(179,64,47,0.12); border-color: var(--bad); }
.status-circle.checking{ background: var(--panel-2); border-color: var(--muted-2); }

.status-text{ margin-top: 14px; font-size: 17px; font-weight: 800; }
.status-text.up{ color: var(--accent); }
.status-text.down{ color: var(--bad); }
.status-sub{ font-size: 12.5px; color: var(--muted); margin-top: 4px; }

.checkbox-label{ display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; cursor: pointer; margin-top: 18px; }
.checkbox-label input{ accent-color: var(--accent); width: 15px; height: 15px; }

.app{ margin-top: 20px; padding: 12px 30px; border: none; border-radius: 30px; cursor: pointer; font-weight: 700; font-size: 14px; font-family: 'Inter', sans-serif; color: #fff; background: var(--accent); transition: filter .15s ease; }
.app:hover{ filter: brightness(1.08); }

.note{ margin-top: 20px; font-size: 12px; color: var(--muted); line-height: 1.6; background: var(--panel-2); border: 1px solid var(--line); border-radius: 8px; padding: 10px 14px; text-align: left; }
