/* Modul auth-myrequests — doplňky k app.css (načítá se přes $pageCss) */

/* SpamGuard::fields() renderuje honeypot s třídou .rf-hp (app.css má jen
   .hp-field) — schovat off-screen, ne display:none */
.rf-hp {
  position: absolute;
  left: -9999px;
  top: auto;
}

/* Řádek „Signed in as … / Sign out" nad seznamem žádostí */
.mr-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  flex-wrap: wrap;
  margin: 0 0 16px;
}
.mr-meta p { margin: 0; }
.mr-signout { display: inline; margin: 0; }

/* Tlačítko vzhledem jako odkaz (Sign out) — touch target >= 44 px */
.btn-linklike {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px;
  background: none;
  border: 0;
  font: inherit;
  color: var(--brand-link-ink);
  text-decoration: underline;
  cursor: pointer;
}
.btn-linklike:hover { color: var(--brand-link); }

/* Typ žádosti v tabulce: ikona + text */
.type-cell {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.type-cell svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--brand-link);
}
