:root {
  /* Opt out of any browser/OS forced-dark-mode inversion. Without this,
     Chrome/Safari "auto dark" can repaint our light surfaces dark, which
     then collides with our navy text and renders pages unreadable. */
  color-scheme: light;
  /* HGA Fundraising brand palette — deep navy + sky-blue accent. */
  --navy: #0c1736;
  --navy-700: #070f26;
  --navy-600: #182447;
  --navy-50: #eaf3fb;
  --accent: #1973a4;
  --accent-600: #135a82;
  --accent-100: #dcebf5;
  --text: #0c1736;
  --text-muted: #5b6478;
  --line: #e1e8f0;
  --line-strong: #c4d2df;
  --bg: #f5f8fb;
  --surface: #ffffff;
  --row-hover: #f0f5fa;
  --danger: #c0392b;
  --danger-100: #fdecea;
  --ok: #1f7a3a;
  --ok-100: #e3f5ea;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 2px rgba(12, 23, 54, 0.06);
  --shadow-md: 0 8px 24px rgba(12, 23, 54, 0.12);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.9em; background: var(--navy-50); padding: 1px 6px; border-radius: 4px; }

/* ===== Header ===== */
.site-header {
  background: var(--navy);
  color: #fff;
  border-bottom: 3px solid var(--accent);
}
.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}
.site-header__brand:hover { text-decoration: none; }
.site-header__logo { height: 36px; width: auto; }
.site-header__title {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  border-left: 1px solid rgba(255,255,255,0.25);
  padding-left: 12px;
}
.site-nav {
  display: flex;
  gap: 4px;
  margin-left: 8px;
  flex: 1;
}
.site-nav__link {
  color: rgba(255,255,255,0.78);
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.15s, color 0.15s;
}
.site-nav__link:hover { color: #fff; background: rgba(255,255,255,0.08); text-decoration: none; }
.site-nav__link.is-active { color: #fff; background: rgba(255,255,255,0.13); }
.site-header__user {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}
.site-header__name { color: rgba(255,255,255,0.9); }
.site-header__logout {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 6px 12px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.site-header__logout:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.55);
  text-decoration: none;
  color: #fff;
}
.site-header__logout:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ===== Page ===== */
.page { flex: 1; }
.container { max-width: 1280px; margin: 0 auto; padding: 32px 24px 64px; }

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  gap: 16px;
}
.page-header__title { margin: 0; font-size: 26px; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.page-header__subtitle { margin: 4px 0 0; color: var(--text-muted); font-size: 14px; }

/* ===== Toolbar ===== */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  align-items: center;
}
.search { position: relative; flex: 1; min-width: 240px; max-width: 420px; }
.search__icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }
.search input {
  width: 100%;
  padding: 10px 12px 10px 36px;
  font: inherit;
  font-size: 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.search input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-100); }

.tag-filter { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-pill {
  padding: 6px 12px;
  font-size: 13px;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  cursor: pointer;
  color: var(--text);
  font-family: inherit;
  transition: all 0.15s;
}
.tag-pill:hover { border-color: var(--accent); color: var(--accent); }
.tag-pill.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ===== Card / Table ===== */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--line);
}
.files { width: 100%; border-collapse: collapse; }
.files thead th {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 12px 16px;
  background: var(--navy-50);
  border-bottom: 1px solid var(--line);
}
.files tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  font-size: 14px;
}
.files tbody tr:last-child td { border-bottom: 0; }
.files tbody tr:hover { background: #fafbfd; }
.files__icon-col { width: 64px; }
.files__actions-col { width: 220px; text-align: right; }
.files__name a { color: var(--navy); font-weight: 500; word-break: break-all; }
.files__name a:hover { color: var(--accent); }

.ftype {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 32px;
  padding: 0 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--navy-50);
  color: var(--navy);
}
.ftype--pdf { background: #fde8e8; color: #b42318; }
.ftype--doc, .ftype--docx { background: #e3edff; color: #1d4ed8; }
.ftype--xls, .ftype--xlsx, .ftype--csv { background: #e0f2e9; color: #15803d; }
.ftype--ppt, .ftype--pptx { background: #ffe8d6; color: #c2410c; }
.ftype--jpg, .ftype--jpeg, .ftype--png, .ftype--gif, .ftype--svg, .ftype--webp { background: #f3e8ff; color: #6b21a8; }
.ftype--zip { background: #fef3c7; color: #92400e; }
.ftype--txt { background: #e2e8f0; color: #334155; }

.tag-row { display: flex; flex-wrap: wrap; gap: 4px; }
.tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  background: hsl(var(--tag-hue, 220) 70% 95%);
  color: hsl(var(--tag-hue, 220) 60% 30%);
  border: 1px solid hsl(var(--tag-hue, 220) 60% 88%);
}

.badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.badge--ok { background: var(--ok-100); color: var(--ok); }
.badge--danger { background: var(--danger-100); color: var(--danger); }
.badge--warn { background: hsl(38 92% 92%); color: hsl(28 75% 32%); }

.rename-old {
  color: var(--text-muted, #6b7280);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.rename-arrow {
  color: var(--text-muted, #6b7280);
  margin: 0 6px;
}

.row-actions { display: flex; gap: 6px; justify-content: flex-end; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn--primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-600); border-color: var(--accent-600); }
.btn--primary:disabled { opacity: 0.55; cursor: not-allowed; }
.btn--ghost { background: #fff; border-color: var(--line-strong); color: var(--text); }
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn--danger { background: #fff; border-color: var(--line-strong); color: var(--danger); }
.btn--danger:hover { background: var(--danger-100); border-color: var(--danger); }
.btn--sm { padding: 6px 10px; font-size: 12px; }

/* ===== Empty ===== */
.empty {
  background: var(--surface);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  padding: 56px 24px;
  text-align: center;
}
.empty__title { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.empty__body { color: var(--text-muted); font-size: 14px; }

/* ===== Modal ===== */
.modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 100; padding: 16px; }
.modal.is-open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(13, 36, 74, 0.55); backdrop-filter: blur(2px); }
.modal__panel {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  animation: modal-in 0.16s ease-out;
}
@keyframes modal-in { from { transform: translateY(8px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal__header { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.modal__title { margin: 0; font-size: 17px; font-weight: 600; color: var(--navy); }
.modal__close { background: none; border: 0; font-size: 26px; line-height: 1; cursor: pointer; color: var(--text-muted); padding: 0 4px; }
.modal__close:hover { color: var(--navy); }
.modal__footer { display: flex; justify-content: flex-end; gap: 10px; padding: 16px 20px; border-top: 1px solid var(--line); background: var(--navy-50); }
.modal form { padding: 20px; }

.dropzone {
  border: 2px dashed var(--line-strong);
  border-radius: var(--radius);
  padding: 32px 16px;
  text-align: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
}
.dropzone:hover, .dropzone.is-drag { border-color: var(--accent); background: var(--accent-100); color: var(--accent); }
.dropzone__primary { margin-top: 10px; font-weight: 500; color: var(--text); font-size: 15px; }
.dropzone__hint { margin-top: 4px; font-size: 12px; color: var(--text-muted); }
.dropzone .link { color: var(--accent); text-decoration: underline; }

.picked { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 14px; margin-top: 12px; background: var(--navy-50); border-radius: var(--radius-sm); font-size: 14px; }
.picked__name { font-weight: 500; color: var(--navy); word-break: break-all; }
.picked__remove { background: none; border: 0; color: var(--danger); cursor: pointer; font-size: 13px; font-family: inherit; }

.field { display: block; margin-top: 16px; }
.field__label { display: block; font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.field__hint { color: var(--text-muted); font-weight: 400; }
.field input {
  width: 100%;
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  outline: none;
}
.field input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-100); }

.progress { margin-top: 16px; }
.progress__bar { height: 6px; background: var(--line); border-radius: 999px; overflow: hidden; position: relative; }
.progress__bar::after { content: ''; display: block; height: 100%; width: var(--p, 0%); background: var(--accent); transition: width 0.15s; }
.progress__text { margin-top: 6px; font-size: 12px; color: var(--text-muted); text-align: right; }

.upload-error { margin-top: 14px; padding: 10px 12px; background: var(--danger-100); color: var(--danger); border-radius: var(--radius-sm); font-size: 13px; }

/* ===== Preview Drawer ===== */
.files__row { cursor: pointer; }
.preview { position: fixed; inset: 0; display: none; z-index: 90; }
.preview.is-open { display: block; }
.preview__backdrop { position: absolute; inset: 0; background: rgba(13, 36, 74, 0.45); animation: fade-in 0.15s ease-out; }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.preview__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 720px;
  background: #fff;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  animation: preview-in 0.2s ease-out;
}
@keyframes preview-in { from { transform: translateX(24px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.preview__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  gap: 12px;
}
.preview__heading { display: flex; align-items: center; gap: 12px; min-width: 0; }
.preview__title { margin: 0; font-size: 15px; font-weight: 600; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.preview__meta {
  padding: 14px 20px;
  background: var(--navy-50);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
}
.preview__meta-row { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.preview__meta-key { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.preview__meta-val { font-size: 13px; color: var(--text); word-break: break-word; }
.preview__body { flex: 1; overflow: auto; background: #f1f3f8; display: flex; align-items: stretch; justify-content: stretch; }
.preview__frame { width: 100%; height: 100%; border: 0; background: #fff; }
.preview__image-wrap { width: 100%; display: flex; align-items: center; justify-content: center; padding: 20px; }
.preview__image { max-width: 100%; max-height: 100%; box-shadow: var(--shadow-sm); background: #fff; }
.preview__empty { margin: auto; text-align: center; padding: 40px 24px; color: var(--text-muted); }
.preview__empty-title { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.preview__empty-body { font-size: 13px; max-width: 320px; }
.preview__footer { display: flex; justify-content: flex-end; gap: 10px; padding: 14px 20px; border-top: 1px solid var(--line); background: #fff; }

@media (max-width: 720px) {
  .preview__panel { max-width: 100%; }
  .preview__meta { grid-template-columns: 1fr; }
}

/* ===== Toast ===== */
#toast-host { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 200; display: flex; flex-direction: column; gap: 8px; align-items: center; pointer-events: none; }
.toast {
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  animation: toast-in 0.18s ease-out;
}
@keyframes toast-in { from { transform: translateY(8px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ===== Login ===== */
.body--login { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-600) 60%, #18488f 100%); min-height: 100vh; display: flex; flex-direction: column; }
.body--login .page { display: flex; align-items: center; justify-content: center; padding: 24px; }
.login { width: 100%; max-width: 440px; }
.login__card {
  background: #fff;
  border-radius: 14px;
  padding: 40px 36px 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.30), 0 4px 12px rgba(0,0,0,0.18);
  text-align: center;
}
.login__logo { max-height: 64px; width: auto; margin-bottom: 18px; }
.login__title { margin: 0; font-size: 22px; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.login__subtitle { margin: 8px 0 24px; color: var(--text-muted); font-size: 14px; line-height: 1.5; }
.login__error { background: var(--danger-100); color: var(--danger); padding: 10px 14px; border-radius: var(--radius-sm); font-size: 13px; margin-bottom: 16px; text-align: left; }
.login__footnote { margin: 18px 0 0; font-size: 12px; color: var(--text-muted); }

.ms-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 12px 18px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  transition: background 0.15s;
  border: 1px solid var(--navy);
}
.ms-button:hover { background: var(--navy-600); text-decoration: none; color: #fff; }
.ms-button__icon { width: 18px; height: 18px; }

/* ===== Footer ===== */
.site-footer { margin-top: auto; background: transparent; border-top: 1px solid var(--line); }
.site-footer__inner { max-width: 1280px; margin: 0 auto; padding: 18px 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--text-muted); }
.body--login .site-footer { border-top: 0; color: rgba(255,255,255,0.7); }
.body--login .site-footer a { color: rgba(255,255,255,0.9); }

/* ===== 404 ===== */
.body--404 { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-600) 100%); min-height: 100vh; display: flex; flex-direction: column; }
.body--404 .page { display: flex; align-items: center; justify-content: center; padding: 24px; }
.notfound { width: 100%; max-width: 520px; }
.notfound__card { background: #fff; border-radius: 14px; padding: 44px 36px; text-align: center; box-shadow: 0 30px 80px rgba(0,0,0,0.30); }
.notfound__logo { max-height: 56px; margin-bottom: 12px; }
.notfound__code { color: var(--accent); font-weight: 700; font-size: 16px; letter-spacing: 0.2em; }
.notfound__title { margin: 6px 0 12px; font-size: 24px; color: var(--navy); }
.notfound__body { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 24px; word-break: break-all; }

@media (max-width: 720px) {
  .site-header__inner { flex-wrap: wrap; gap: 12px; }
  .site-nav { order: 3; flex-basis: 100%; }
  .files__actions-col { width: auto; }
  .row-actions .btn span { display: none; }
}

/* --- Recent renames panel --- */
.redirects {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 18px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.redirects__header { margin-bottom: 10px; }
.redirects__title { margin: 0; font-size: 15px; font-weight: 600; color: var(--navy); }
.redirects__subtitle { margin: 2px 0 0; color: var(--text-muted); font-size: 13px; }
.redirects__list { list-style: none; margin: 0; padding: 0; }
.redirect {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.redirect__names { flex: 1 1 260px; min-width: 0; font-size: 14px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.redirect__names a { color: var(--navy); font-weight: 500; text-decoration: none; }
.redirect__names a:hover { text-decoration: underline; }
.redirect__meta { color: var(--text-muted); font-size: 13px; white-space: nowrap; }
.redirect--warning {
  background: hsl(38 92% 97%);
  border-left: 3px solid hsl(28 75% 55%);
  padding-left: 12px;
  margin: 4px -8px 4px -12px;
  padding-right: 8px;
  border-radius: 4px;
}
.redirect--warning .redirect__expires { color: hsl(28 75% 32%); font-weight: 500; }
.badge--warn { display: inline-flex; align-items: center; gap: 4px; }
.badge--warn svg { display: block; }
.redirect__actions { display: flex; gap: 8px; }
@media (max-width: 720px) {
  .redirect { padding: 12px 0; }
  .redirect__actions { width: 100%; }
}

/* Duration picker dialog (rename + extend) */
.duration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 8px;
  margin-top: 4px;
}
.duration-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  background: #fff;
  transition: border-color 0.15s, background 0.15s;
}
.duration-opt:hover { border-color: var(--navy); }
.duration-opt input[type="radio"] { margin: 0; accent-color: var(--accent); }
.duration-opt:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-100, #eef3ff);
}
.duration-custom {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.duration-custom__input {
  width: 110px;
  padding: 8px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  font-size: 14px;
}
.duration-custom__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-100);
}
.duration-note {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
}
[data-rename-input] {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  font: inherit;
  font-size: 14px;
}
[data-rename-input]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-100);
}

/* ---------- Activity log filters & rows ---------- */
.toolbar--log { flex-wrap: wrap; gap: 12px; }
.log-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.log-filter__label { font-weight: 500; }
.log-filter select {
  padding: 7px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #fff;
  font: inherit;
  font-size: 13px;
  color: var(--text);
  min-width: 140px;
}
.log-filter select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-100, #eef3ff);
}
.log-filter__count {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: auto;
}
.log-row__sub {
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}
.log-row--clickable { cursor: pointer; }
.log-row--clickable:hover { background: var(--row-hover, #f6f8fb); }
.log-row--clickable:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}
.redirect__expires-abs {
  color: var(--text-muted);
  font-weight: 400;
  white-space: nowrap;
}
.redirect--warning .redirect__expires-abs { color: hsl(28 60% 38%); }
