/* ===================================================================
 * HydraKZ · Test Reporter — tema claro, estética moderna
 * =================================================================== */

/* ===================== TOKENS ===================== */
:root {
  --bg: #dfe2e8;
  --surface: #ffffff;
  --surface-2: #f1f3f6;
  --border: #e3e5ea;
  --border-strong: #d2d5dd;
  --text: #15171c;
  --text-soft: #535862;
  --text-muted: #9298a3;

  --brand: #20232a;
  --brand-dark: #14161a;
  --brand-soft: #eceef1;
  --on-brand: #ffffff;
  --carbon: #0e1013;
  --carbon-2: #1c2026;

  --ok: #0c9a6c;        --ok-soft: #e7f6ef;
  --bug: #e23a59;       --bug-soft: #fcecf0;
  --block: #7b5cf0;     --block-soft: #efeafe;
  --progress: #2f6bf0;  --progress-soft: #e8f0fe;
  --pending: #db8a1a;   --pending-soft: #fbf2e1;

  --shadow-sm: 0 1px 2px rgba(16, 18, 26, .05);
  --shadow-md: 0 10px 34px rgba(16, 18, 26, .14);
  --radius: 12px;
  --radius-sm: 8px;
  --ring: 0 0 0 3px rgba(32, 35, 42, .12);
}

/* ===================== DARK MODE ===================== */
:root[data-theme="dark"] {
  --bg: #0a0b0e;
  --surface: #15181d;
  --surface-2: #1c2026;
  --border: #191c22;
  --border-strong: #23272f;
  --text: #e8eaef;
  --text-soft: #a7aeba;
  --text-muted: #747c88;

  --brand: #f0f1f4;
  --brand-dark: #d8dade;
  --brand-soft: #232831;
  --on-brand: #15171b;

  --ok-soft: #0f2a20;
  --bug-soft: #321521;
  --block-soft: #241a3a;
  --progress-soft: #122036;
  --pending-soft: #2e2310;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
  --shadow-md: 0 14px 40px rgba(0, 0, 0, .55);
  --ring: 0 0 0 3px rgba(255, 255, 255, .1);
}
:root[data-theme="dark"] .app-header {
  border-bottom-color: #20242b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05), 0 8px 28px rgba(0, 0, 0, .5);
}
:root[data-theme="dark"] .code { background: #0a0c10; }
:root[data-theme="dark"] .project-menu__item.is-active .project-menu__count { background: var(--surface); }

* { box-sizing: border-box; }
[hidden] { display: none !important; }

/* scrollbars finas e translúcidas */
* { scrollbar-width: thin; scrollbar-color: rgba(20, 22, 26, .28) transparent; }
::-webkit-scrollbar { width: 9px; height: 9px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(20, 22, 26, .24);
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(20, 22, 26, .42);
  border: 3px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-corner { background: transparent; }
.code::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, .2); border: 3px solid transparent; background-clip: padding-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: 'Archivo', system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

svg { display: block; }

/* plexus de fundo (suave e borrado, não distrai) */
.plexus {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  filter: blur(1.4px);
  opacity: .4;
}
:root[data-theme="dark"] .plexus { opacity: .5; }
.container { position: relative; z-index: 1; }

/* ===================== HEADER ===================== */
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 26px;
  background-color: var(--carbon);
  background-image:
    radial-gradient(120% 180% at 0% 0%, rgba(255, 255, 255, .05), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(0, 0, 0, .28)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .012) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(-45deg, rgba(0, 0, 0, .14) 0 1px, transparent 1px 4px);
  border-bottom: 1px solid #050608;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 8px 28px rgba(0, 0, 0, .26);
  position: sticky;
  top: 0;
  z-index: 20;
}
.app-header__left { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.app-header__brand { display: flex; align-items: center; gap: 13px; }
.brand-logo { height: 24px; width: auto; display: block; }
.app-header__divider { width: 1px; height: 34px; background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .14), transparent); }
.logo {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background-color: var(--carbon-2);
  background-image:
    linear-gradient(140deg, #3b414c, #15171b),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .05) 0 2px, transparent 2px 5px);
  color: #fff;
  font-weight: 800;
  letter-spacing: .3px;
  display: grid;
  place-items: center;
  font-size: 16px;
  border: 1px solid #3b414c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .08);
}
.app-header h1 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #f4f5f7;
  display: flex;
  align-items: center;
  gap: 9px;
}
.app-header__mark {
  font-size: 9.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #8b93a0;
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 3px 7px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .03);
}
.subtitle { margin: 2px 0 0; font-size: 11.5px; color: #7f8794; letter-spacing: .005em; }
.app-header__actions { display: flex; gap: 8px; align-items: center; }

/* seletor de projetos */
.project-select { position: relative; }
.project-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #e2e5ea;
  padding: 8px 11px;
  border-radius: 9px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.project-btn:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .22); }
.project-btn__icon { width: 16px; height: 16px; color: #99a1ad; }
.project-btn__label { max-width: 200px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.caret { width: 13px; height: 13px; opacity: .7; flex: 0 0 auto; }

.project-menu {
  position: absolute;
  top: calc(100% + 9px);
  left: 0;
  min-width: 248px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 13px;
  box-shadow: var(--shadow-md);
  padding: 6px;
  z-index: 40;
}
.project-menu__head {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-muted);
  font-weight: 700;
  padding: 8px 10px 5px;
}
.project-menu__list { display: flex; flex-direction: column; gap: 2px; max-height: 280px; overflow: auto; }
.project-menu__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: none;
  border: none;
  border-radius: 8px;
  padding: 9px 10px;
  font: inherit;
  font-size: 13.5px;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}
.project-menu__item:hover { background: var(--surface-2); }
.project-menu__item.is-active { background: var(--brand-soft); font-weight: 600; }
.project-menu__name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.project-menu__count {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--surface-2);
  border-radius: 999px;
  padding: 1px 8px;
  flex: 0 0 auto;
}
.project-menu__item.is-active .project-menu__count { background: #fff; }
.project-menu__actions { display: flex; gap: 4px; border-top: 1px solid var(--border); margin-top: 6px; padding-top: 6px; }
.project-menu__action {
  flex: 1;
  background: none;
  border: none;
  border-radius: 7px;
  padding: 8px 6px;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
  cursor: pointer;
}
.project-menu__action:hover { background: var(--surface-2); color: var(--text); }
.project-menu__action--danger:hover { background: var(--bug-soft); color: var(--bug); }

/* botões sobre o header escuro */
.app-header .btn--ghost {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .14);
  color: #d8dbe1;
}
.app-header .btn--ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .24);
  color: #fff;
}
.app-header .btn--primary {
  background: #fff;
  color: var(--carbon);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .25);
}
.app-header .btn--primary:hover { background: #e9eaec; }

/* botões de ícone do header (tema + kebab) */
.hbtn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #d8dbe1;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.hbtn:hover { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .22); }
.hbtn svg { width: 18px; height: 18px; }

.overflow { position: relative; }
.overflow-menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  min-width: 176px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 11px;
  box-shadow: var(--shadow-md);
  padding: 5px;
  z-index: 40;
}
.overflow-menu button {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  background: none;
  border: none;
  border-radius: 7px;
  padding: 9px 10px;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}
.overflow-menu button:hover { background: var(--surface-2); }

/* ===================== BUTTONS ===================== */
.btn {
  font: inherit;
  font-weight: 600;
  font-size: 13.5px;
  border-radius: var(--radius-sm);
  padding: 9px 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .15s, border-color .15s, transform .04s, box-shadow .15s, color .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--brand); color: var(--on-brand); box-shadow: 0 2px 8px rgba(16, 18, 26, .22); }
.btn--primary:hover { background: var(--brand-dark); }
.btn--ghost { background: var(--surface); border-color: var(--border-strong); color: var(--text-soft); }
.btn--ghost:hover { background: var(--surface-2); color: var(--text); border-color: var(--text-muted); }

/* ===================== LAYOUT ===================== */
.container { max-width: 1080px; margin: 0 auto; padding: 26px 28px 80px; }

/* ===================== STATS ===================== */
.stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
.stat {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 14px 13px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.stat::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--text-muted);
  opacity: .85;
}
.stat__value { font-size: 23px; font-weight: 700; line-height: 1; letter-spacing: -.03em; color: var(--text); }
.stat__label {
  margin-top: 7px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.stat--total::before { background: var(--brand); }
.stat--ok::before { background: var(--ok); }
.stat--bug::before { background: var(--bug); }
.stat--block::before { background: var(--block); }
.stat--progress::before { background: var(--progress); }
.stat--pending::before { background: var(--pending); }

.stat__icon { position: absolute; top: 11px; right: 11px; opacity: .92; }
.stat__icon svg { width: 17px; height: 17px; }
.stat--total .stat__icon { color: var(--text-muted); }
.stat--ok .stat__icon { color: var(--ok); }
.stat--bug .stat__icon { color: var(--bug); }
.stat--block .stat__icon { color: var(--block); }
.stat--progress .stat__icon { color: var(--progress); }
.stat--pending .stat__icon { color: var(--pending); }

/* ===================== TOOLBAR ===================== */
.toolbar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; align-items: center; }
.toolbar__search { position: relative; flex: 1 1 280px; }
.toolbar__search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 16px;
  pointer-events: none;
}
.toolbar__search input { width: 100%; padding: 9px 14px 9px 36px; }
.toolbar__filters { display: flex; gap: 8px; flex-wrap: wrap; }

input, select, textarea {
  font: inherit;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 9px 11px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
input::placeholder, textarea::placeholder { color: var(--text-muted); }
input:focus, select:focus, textarea:focus { border-color: var(--brand); box-shadow: var(--ring); }
textarea { resize: vertical; line-height: 1.5; }

/* selects com chevron próprio (altura igual à dos inputs, setinha bem posicionada) */
select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 34px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238b93a0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

/* ===================== LIST / CARDS ===================== */
.list { display: flex; flex-direction: column; gap: 10px; }
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 15px 18px 15px 22px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .15s, border-color .15s;
  --accent: var(--text-muted);
}
.card:hover { box-shadow: var(--shadow-md); }
.card.menu-open { z-index: 6; }

/* detalhe neon pulsante na lateral esquerda */
.card::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 3px;
  background: var(--accent);
  box-shadow: 0 0 7px var(--accent), 0 0 2px var(--accent);
  animation: neonPulse 2.6s ease-in-out infinite;
}
.card[data-status="aprovado"]     { --accent: #00e08a; }
.card[data-status="bug"]          { --accent: #ff3b6b; }
.card[data-status="bloqueado"]    { --accent: #b06bff; }
.card[data-status="em-andamento"] { --accent: #36a3ff; }
.card[data-status="pendente"]     { --accent: #ffb02e; }
@keyframes neonPulse {
  0%, 100% { opacity: .78; box-shadow: 0 0 5px var(--accent), 0 0 1px var(--accent); }
  50%      { opacity: 1;   box-shadow: 0 0 14px var(--accent), 0 0 5px var(--accent); }
}
@media (prefers-reduced-motion: reduce) { .card::before { animation: none; } }

.card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; flex-wrap: wrap; }
.card__head { flex: 1 1 auto; min-width: 0; }
.card__title {
  margin: 0;
  font-size: 15.5px;
  font-weight: 650;
  font-weight: 600;
  letter-spacing: -.01em;
  cursor: pointer;
  width: fit-content;
  transition: color .15s;
}
.card__title:hover { color: var(--brand); }
.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 7px;
  font-size: 12.5px;
  color: var(--text-muted);
}
.card__meta span { display: inline-flex; align-items: center; gap: 5px; }
.card__meta svg { color: var(--text-muted); opacity: .9; }

.card__actions { display: flex; gap: 7px; flex-wrap: nowrap; align-items: center; flex: 0 0 auto; }
/* alturas uniformes para status, severidade e botões de ação */
.card__actions .badge[data-status-btn],
.card__actions .sev,
.card__actions .icon-btn { height: 30px; }
.card__actions .sev { display: inline-flex; align-items: center; }

.badge {
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 9px 4px 8px;
  border: none;
  border-radius: 6px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.25;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge--aprovado     { background: var(--ok-soft);       color: var(--ok); }
.badge--bug          { background: var(--bug-soft);      color: var(--bug); }
.badge--bloqueado    { background: var(--block-soft);    color: var(--block); }
.badge--em-andamento { background: var(--progress-soft); color: var(--progress); }
.badge--pendente     { background: var(--pending-soft);  color: var(--pending); }

/* dropdown de troca rápida de status */
.status-select { position: relative; display: inline-block; }
.badge[data-status-btn] { cursor: pointer; }
.badge[data-status-btn]:hover { filter: brightness(.96); }
.badge .caret { width: 11px; height: 11px; margin-left: 1px; opacity: .6; }
.status-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 188px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 11px;
  box-shadow: var(--shadow-md);
  padding: 5px;
  z-index: 30;
  display: none;
}
.status-select.is-open .status-menu { display: block; }
.status-menu__item {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  background: none;
  border: none;
  border-radius: 7px;
  padding: 8px 10px;
  font: inherit;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}
.status-menu__item:hover { background: var(--surface-2); }
.status-menu__item.is-active { font-weight: 600; }
.status-menu__item .dot { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; }
.dot--aprovado     { background: var(--ok); }
.dot--bug          { background: var(--bug); }
.dot--bloqueado    { background: var(--block); }
.dot--em-andamento { background: var(--progress); }
.dot--pendente     { background: var(--pending); }

.sev {
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.sev--critica { color: #c11d3b; border-color: #f3c1cb; background: #fdeef1; }
.sev--alta    { color: #c2570c; border-color: #f1cda9; background: #fdf2e9; }
.sev--media   { color: #9a6a07; border-color: #ead79a; background: #fbf6e6; }
.sev--baixa   { color: #0c8a5c; border-color: #b1ddc8; background: #e9f7f0; }

.card__body {
  margin-top: 13px;
  font-size: 13.5px;
  color: var(--text-soft);
  display: none;
  flex-direction: column;
  gap: 13px;
  border-top: 1px solid var(--border);
  padding-top: 13px;
}
.card.is-open .card__body { display: flex; }

.card__section h4 {
  margin: 0 0 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
  font-weight: 700;
  display: flex;
  align-items: center;
}
.card__section p { margin: 0; white-space: pre-wrap; word-break: break-word; color: var(--text); }
.card__grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.icon-btn {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .15s, border-color .15s, color .15s;
}
.icon-btn:hover { background: var(--surface-2); color: var(--brand); border-color: var(--brand); }
.icon-btn--duplicate:hover { background: var(--progress-soft); color: var(--progress); border-color: var(--progress); }
.icon-btn--danger:hover { background: var(--bug-soft); color: var(--bug); border-color: var(--bug); }
.icon-btn svg { width: 15px; height: 15px; }

.card__expand {
  background: none;
  border: none;
  color: var(--brand);
  font: inherit;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 0 0;
}

/* ===================== EMPTY ===================== */
.empty { text-align: center; padding: 64px 20px; color: var(--text-muted); }
.empty__icon { display: inline-flex; color: var(--border-strong); }
.empty__icon svg { width: 52px; height: 52px; }
.empty h2 { margin: 16px 0 6px; color: var(--text); font-size: 18px; font-weight: 650; font-weight: 600; }
.empty p { margin: 0 0 20px; }

/* ===================== MODAL ===================== */
.modal { position: fixed; inset: 0; z-index: 50; display: grid; place-items: center; padding: 20px; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(16, 18, 26, .42); backdrop-filter: blur(3px); }
.modal__panel {
  position: relative;
  background: var(--surface);
  border-radius: 16px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  animation: pop .18s ease;
}
@keyframes pop { from { opacity: 0; transform: translateY(8px) scale(.99); } to { opacity: 1; transform: none; } }
.modal__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--surface);
  border-radius: 16px 16px 0 0;
  z-index: 3;
}
.modal__head h2 { margin: 0; font-size: 17px; font-weight: 650; font-weight: 600; letter-spacing: -.01em; }
.modal__close {
  border: none;
  background: var(--surface-2);
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text-soft);
  font-size: 13px;
}
.modal__close:hover { background: var(--border-strong); color: var(--text); }

/* ===================== FORM ===================== */
.form { padding: 20px 22px; display: flex; flex-direction: column; gap: 15px; }
.form__row { display: flex; gap: 13px; flex-wrap: wrap; }
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 0 0 auto;
}

.form__row > .field {
  flex: 1 1 160px;
}

.field--grow {
  width: 100%;
}

.form__row > .field--grow {
  flex: 1 1 100%;
}
.field__label { font-size: 12.5px; font-weight: 600; color: var(--text-soft); }
.field__hint { font-weight: 400; color: var(--text-muted); font-size: 11.5px; }
.req { color: var(--bug); }
.link-btn {
  background: none; border: none; color: var(--brand);
  font: inherit; font-weight: 600; cursor: pointer; padding: 0; text-decoration: underline;
}

.modal__foot {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid var(--border);
  margin-top: 2px;
}

/* ===================== STEPS EDITOR (form) ===================== */
.steps-editor { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.step-edit { display: flex; align-items: center; gap: 9px; }
.step-edit__check { width: 17px; height: 17px; flex: 0 0 auto; cursor: pointer; accent-color: var(--ok); }
.step-edit__text { flex: 1; }
.step-edit__remove {
  flex: 0 0 auto; width: 30px; height: 30px;
  border: 1px solid var(--border); background: var(--surface);
  color: var(--text-muted); border-radius: var(--radius-sm); cursor: pointer; font-size: 12px;
}
.step-edit__remove:hover { background: var(--bug-soft); color: var(--bug); border-color: var(--bug); }
.btn-add-step {
  align-self: flex-start;
  margin-top: 3px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  font: inherit; font-size: 12.5px; font-weight: 600; cursor: pointer;
}
.btn-add-step:hover { background: var(--border); }

/* ===================== CHECKLIST (card) ===================== */
.steps-progress {
  margin-left: 8px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0;
  text-transform: none;
}
.checklist { list-style: none; margin: 5px 0 0; padding: 0; display: flex; flex-direction: column; gap: 5px; }
.checklist__item label { display: flex; align-items: flex-start; gap: 9px; cursor: pointer; font-size: 13.5px; color: var(--text); }
.checklist__item input { width: 16px; height: 16px; margin-top: 1px; flex: 0 0 auto; cursor: pointer; accent-color: var(--ok); }
.checklist__item.is-done span { text-decoration: line-through; color: var(--text-muted); }

/* ===================== HAR INPUT (form) ===================== */
.har-input { display: flex; flex-direction: column; gap: 9px; }
.har-drop {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius);
  background: var(--surface-2);
  color: var(--text-soft);
  font-size: 13px;
  transition: border-color .15s, background .15s;
}
.har-drop.is-drag { border-color: var(--brand); background: var(--brand-soft); }
.har-drop__icon { color: var(--text-muted); flex: 0 0 auto; }
.har-drop__icon svg { width: 20px; height: 20px; }
.har-paste { width: 100%; min-height: 64px; font-family: ui-monospace, "Cascadia Code", Consolas, monospace; font-size: 12px; }
.har-attached .har-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 12px; background: var(--brand-soft);
  border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  font-size: 13px; color: var(--text);
}
.har-attached .har-chip svg { width: 16px; height: 16px; color: var(--text-soft); }
.har-attached .har-chip em { color: var(--text-muted); font-style: normal; }
.har-attached .har-chip button {
  border: none; background: var(--surface-2); color: var(--text-soft);
  width: 21px; height: 21px; border-radius: 6px; cursor: pointer; font-size: 11px;
}
.har-attached .har-chip button:hover { background: var(--bug-soft); color: var(--bug); }

.har-open-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm); padding: 8px 13px;
  font: inherit; font-size: 13px; font-weight: 600; color: var(--brand-dark); cursor: pointer;
}
.har-open-btn:hover { background: var(--brand-soft); border-color: var(--brand); }
.har-open-btn svg { width: 15px; height: 15px; }

/* ===================== HAR VIEWER ===================== */
.har-panel { max-width: 1120px; width: 96vw; height: 88vh; max-height: 88vh; display: flex; flex-direction: column; }
.har-toolbar {
  display: flex; gap: 9px; align-items: center; flex-wrap: wrap;
  padding: 13px 20px; border-bottom: 1px solid var(--border);
}
.har-search { flex: 1 1 220px; }
.har-search input { width: 100%; padding-left: 34px; }
.har-filters { display: flex; gap: 5px; flex-wrap: wrap; }
.har-chip-filter {
  border: 1px solid var(--border-strong); background: var(--surface); color: var(--text-soft);
  border-radius: 999px; padding: 6px 12px; font: inherit; font-size: 12px; font-weight: 600; cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.har-chip-filter:hover { background: var(--surface-2); }
.har-chip-filter.is-active { background: var(--brand); color: var(--on-brand); border-color: var(--brand); }

.har-split { flex: 1; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); overflow: hidden; }
.har-list { overflow: auto; border-right: 1px solid var(--border); }
.har-row {
  display: grid;
  grid-template-columns: 46px 66px 1fr 60px 72px 66px;
  gap: 8px; align-items: center;
  padding: 8px 16px; font-size: 12.5px;
  border-bottom: 1px solid var(--border); cursor: pointer;
}
.har-row:hover { background: var(--surface-2); }
.har-row.is-selected { background: var(--brand-soft); }
.har-row--head {
  position: sticky; top: 0; background: var(--surface);
  font-weight: 700; color: var(--text-muted); font-size: 10.5px;
  text-transform: uppercase; letter-spacing: .04em; cursor: default; z-index: 2;
}
.har-row--head:hover { background: var(--surface); }
.hc-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--text); font-weight: 500; }
.hc-method, .hc-type { color: var(--text-soft); }
.hc-size, .hc-time { color: var(--text-muted); text-align: right; }

.st { display: inline-block; font-weight: 700; font-size: 11.5px; padding: 1px 7px; border-radius: 5px; }
.st--ok    { background: var(--ok-soft);       color: var(--ok); }
.st--redir { background: var(--progress-soft); color: var(--progress); }
.st--warn  { background: var(--pending-soft);  color: var(--pending); }
.st--err   { background: var(--bug-soft);      color: var(--bug); }
.st--na    { background: var(--surface-2);     color: var(--text-muted); }
.st--lg { font-size: 13px; padding: 3px 9px; }

.har-detail { overflow: auto; display: flex; flex-direction: column; }
.har-detail__head {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 18px; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: var(--surface); z-index: 2;
}
.har-detail__method { font-weight: 700; font-size: 12.5px; color: var(--text-soft); }
.har-detail__url {
  font-size: 12px; color: var(--text-muted);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
}
.har-tabs {
  display: flex; gap: 2px; padding: 0 12px;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 52px; background: var(--surface); z-index: 1;
}
.har-tab {
  border: none; background: none; padding: 11px 12px;
  font: inherit; font-size: 12.5px; font-weight: 600;
  color: var(--text-muted); cursor: pointer; border-bottom: 2px solid transparent;
}
.har-tab:hover { color: var(--text); }
.har-tab.is-active { color: var(--brand); border-bottom-color: var(--brand); }
.har-detail__body { padding: 16px 18px; }

.har-sub { margin-bottom: 18px; }
.har-sub h5 {
  margin: 0 0 8px; font-size: 11px; text-transform: uppercase;
  letter-spacing: .04em; color: var(--text-muted); font-weight: 700;
}
.har-muted { color: var(--text-muted); font-size: 13px; margin: 0; }

.kv { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.kv td { padding: 5px 8px; border-bottom: 1px solid var(--border); vertical-align: top; }
.kv__k { color: var(--text-soft); font-weight: 600; width: 38%; word-break: break-word; }
.kv__v { color: var(--text); word-break: break-all; font-family: ui-monospace, "Cascadia Code", Consolas, monospace; }

.code {
  margin: 0; background: #11141c; color: #e4e7ee; border-radius: 10px; padding: 14px;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 12.5px; line-height: 1.55; overflow: auto; max-height: 360px;
  white-space: pre-wrap; word-break: break-word;
}

.timing { display: flex; flex-direction: column; gap: 8px; }
.timing__row { display: grid; grid-template-columns: 110px 1fr 70px; gap: 10px; align-items: center; font-size: 12.5px; }
.timing__label { color: var(--text-soft); }
.timing__bar { background: var(--surface-2); border-radius: 5px; height: 11px; overflow: hidden; }
.timing__bar i { display: block; height: 100%; border-radius: 5px; }
.timing__ms { color: var(--text-muted); text-align: right; }

.har-empty { padding: 40px 20px; text-align: center; color: var(--text-muted); font-size: 14px; }

/* ===================== TOAST ===================== */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--text); color: #fff; padding: 11px 18px; border-radius: 10px;
  font-size: 13.5px; font-weight: 500; box-shadow: var(--shadow-md); z-index: 80;
  animation: toastIn .2s ease;
}
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, 10px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 880px) { .stats { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) {
  .app-header { padding: 13px 16px; }
  .container { padding: 18px 16px 60px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .card__grid2 { grid-template-columns: 1fr; }
  .app-header__actions { width: 100%; }
  .app-header__actions .btn { flex: 1; }
  .har-split { grid-template-columns: 1fr; }
}

/* =========================================================
 * FIX definitivo: botão close com X desenhado via CSS
 * ========================================================= */

.modal__close {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: var(--surface-2);
  color: var(--text-soft);
  cursor: pointer;
  line-height: 1;
  font-size: 0; /* mata o glifo torto caso ainda exista texto */
}

.modal__close > span {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
}

.modal__close > span::before,
.modal__close > span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 1.8px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}

.modal__close > span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close > span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__close:hover {
  background: var(--border-strong);
  color: var(--text);
}

/* =========================================================
 * HEADER CLOCK
 * ========================================================= */

.header-clock {
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 0 13px;
  border-radius: 10px;

  font-family: 'Archivo', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .01em;

  color: #d8dbe1;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .05),
    0 2px 8px rgba(0, 0, 0, .18);

  white-space: nowrap;
  user-select: none;
}

.header-clock__icon {
  width: 17px;
  height: 17px;
  color: #9aa3b1;
  flex: 0 0 auto;
}

.header-clock__text {
  display: inline-block;
  min-width: 142px;
  text-align: left;
  font-variant-numeric: tabular-nums;
}

.header-clock:hover {
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .2);
  color: #ffffff;
}

.header-clock:hover .header-clock__icon {
  color: #ffffff;
}

/* Responsivo: em telas pequenas, não deixa o header virar uma sopa */
@media (max-width: 760px) {
  .header-clock {
    order: -1;
    width: 100%;
    justify-content: center;
  }

  .header-clock__text {
    min-width: auto;
  }
}

.modal__close > span,
.modal__close > span::before,
.modal__close > span::after {
  pointer-events: none;
}

/* =========================================================
 * CUSTOM CONFIRM MODAL
 * Substitui window.confirm nativo do navegador
 * ========================================================= */

.confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
}

.confirm-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 18, 26, .48);
  backdrop-filter: blur(4px);
}

.confirm-modal__panel {
  position: relative;
  width: min(440px, 100%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .28);
  overflow: hidden;
  animation: confirmPop .16s ease;
}

@keyframes confirmPop {
  from {
    opacity: 0;
    transform: translateY(8px) scale(.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.confirm-modal__head {
  padding: 18px 20px 10px;
}

.confirm-modal__title {
  margin: 0;
  font-family: 'Archivo', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
}

.confirm-modal__body {
  padding: 0 20px 18px;
}

.confirm-modal__message {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-soft);
}

.confirm-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 20px 18px;
  border-top: 1px solid var(--border);
}

.confirm-modal__btn {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 9px 15px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 13.5px;
  font-weight: 650;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, transform .04s;
}

.confirm-modal__btn:active {
  transform: translateY(1px);
}

.confirm-modal__btn--cancel {
  background: var(--surface-2);
  border-color: var(--border);
  color: var(--text-soft);
}

.confirm-modal__btn--cancel:hover {
  background: var(--border);
  color: var(--text);
}

.confirm-modal__btn--danger {
  background: var(--bug);
  color: #fff;
  box-shadow: 0 2px 10px rgba(226, 58, 89, .24);
}

.confirm-modal__btn--danger:hover {
  filter: brightness(.94);
}

.confirm-modal__btn--primary {
  background: var(--brand);
  color: var(--on-brand);
}

.confirm-modal__btn--primary:hover {
  background: var(--brand-dark);
}

@media (max-width: 520px) {
  .confirm-modal__actions {
    flex-direction: column-reverse;
  }

  .confirm-modal__btn {
    width: 100%;
  }
}

/* =========================================================
 * Final safety overrides
 * ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  min-height: 38px;
  text-align: center;
}

.step-edit__remove {
  display: inline-grid;
  place-items: center;
  padding: 0;
  line-height: 1;
}

.modal__close > span,
.modal__close > span::before,
.modal__close > span::after {
  pointer-events: none;
}

/* =========================================================
 * CUSTOM INPUT MODAL
 * Usado para criar/renomear projetos sem prompt() nativo
 * ========================================================= */

.confirm-modal__field {
  display: block;
  margin-top: 13px;
}

.confirm-modal__input {
  width: 100%;
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  font-family: 'Archivo', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  padding: 10px 12px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}

.confirm-modal__input::placeholder {
  color: var(--text-muted);
}

.confirm-modal__input:focus {
  border-color: var(--brand);
  box-shadow: var(--ring);
}

.confirm-modal__error {
  margin: 8px 0 0;
  color: var(--bug);
  font-size: 12.5px;
  font-weight: 600;
}

/* =========================================================
 * REPORTER GATE
 * Tranca client-side simbólica por passphrase
 * ========================================================= */

:root[data-reporter-locked="true"] body {
  overflow: hidden;
}

:root[data-reporter-locked="true"] .app-header,
:root[data-reporter-locked="true"] .container {
  filter: blur(4px);
  pointer-events: none;
  user-select: none;
}

.gate-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 22px;
}

.gate-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, .12), transparent 34%),
    rgba(4, 6, 10, .72);
  backdrop-filter: blur(7px);
}

.gate-modal__panel {
  position: relative;
  width: min(460px, 100%);
  border-radius: 18px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(246, 247, 250, .96));
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, .34),
    inset 0 1px 0 rgba(255, 255, 255, .8);
  color: var(--text);
  animation: gateIn .2s ease;
}

:root[data-theme="dark"] .gate-modal__panel {
  background:
    linear-gradient(180deg, rgba(21, 24, 29, .96), rgba(14, 16, 19, .96));
  border-color: rgba(255, 255, 255, .08);
}

@keyframes gateIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.gate-modal__sigil {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 13px;
  color: #d7a84f;
  background:
    linear-gradient(145deg, rgba(215, 168, 79, .16), rgba(255, 255, 255, .04));
  border: 1px solid rgba(215, 168, 79, .28);
}

.gate-modal__sigil svg {
  width: 23px;
  height: 23px;
}

.gate-modal__head {
  margin-bottom: 18px;
}

.gate-modal__title {
  margin: 0;
  font-family: 'Archivo', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
}

.gate-modal__subtitle {
  margin: 8px 0 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-soft);
}

.gate-modal__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.gate-modal__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.gate-modal__input {
  width: 100%;
  min-height: 44px;
  border-radius: 11px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  font-family: 'Archivo', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 12px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}

.gate-modal__input:focus {
  border-color: #d7a84f;
  box-shadow: 0 0 0 3px rgba(215, 168, 79, .18);
}

.gate-modal__hint {
  margin: 10px 0 0;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.45;
}

.gate-modal__error {
  margin: 10px 0 0;
  color: var(--bug);
  font-size: 12.5px;
  font-weight: 700;
}

.gate-modal__actions {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}

.gate-modal__button {
  min-height: 40px;
  border: none;
  border-radius: 11px;
  padding: 10px 16px;
  cursor: pointer;
  font-family: 'Archivo', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #111318;
  background: linear-gradient(135deg, #f4d27a, #d7a84f);
  box-shadow: 0 8px 22px rgba(215, 168, 79, .28);
  transition: transform .04s, filter .15s;
}

.gate-modal__button:hover {
  filter: brightness(.97);
}

.gate-modal__button:active {
  transform: translateY(1px);
}

.gate-modal__button:disabled {
  cursor: wait;
  opacity: .72;
}

@media (max-width: 520px) {
  .gate-modal__panel {
    padding: 22px;
  }

  .gate-modal__actions {
    justify-content: stretch;
  }

  .gate-modal__button {
    width: 100%;
  }
}

/* =========================================================
 * DARK MODE POLISH
 * Toast + severidade com contraste correto no modo escuro
 * ========================================================= */

/* Toast base mais elegante no tema claro também */
.toast {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(244, 246, 249, .98));
  color: var(--text);
  border: 1px solid rgba(20, 22, 26, .12);
  box-shadow:
    0 16px 42px rgba(16, 18, 26, .22),
    inset 0 1px 0 rgba(255, 255, 255, .75);
  font-weight: 650;
}

/* No dark mode, antes isto virava um cubo branco com texto quase invisível.
   A pequena abominação foi aposentada. */
:root[data-theme="dark"] .toast {
  background:
    linear-gradient(180deg, rgba(25, 29, 36, .98), rgba(13, 15, 20, .98));
  color: #eef1f6;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, .58),
    inset 0 1px 0 rgba(255, 255, 255, .07);
}

/* Severidade: mantém o visual limpo no claro */
.sev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
}

/* Severidade no dark mode:
   Sai o pastel gritante de planilha assombrada, entra badge escura com brilho controlado. */
:root[data-theme="dark"] .sev {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .10);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .05),
    0 1px 8px rgba(0, 0, 0, .18);
}

:root[data-theme="dark"] .sev--critica {
  color: #ff8da3;
  background: rgba(255, 59, 107, .13);
  border-color: rgba(255, 111, 143, .34);
}

:root[data-theme="dark"] .sev--alta {
  color: #ffb070;
  background: rgba(255, 126, 38, .13);
  border-color: rgba(255, 176, 112, .32);
}

:root[data-theme="dark"] .sev--media {
  color: #ffd36a;
  background: rgba(255, 190, 64, .13);
  border-color: rgba(255, 211, 106, .30);
}

:root[data-theme="dark"] .sev--baixa {
  color: #72e2ad;
  background: rgba(34, 211, 135, .13);
  border-color: rgba(114, 226, 173, .30);
}

