.fisher-header-link,
.fisher-account-button {
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.10);
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.fisher-header-link:hover,
.fisher-account-button:hover { background: rgba(255,255,255,.18); }

html.fisher-auth-required,
html.fisher-auth-required body {
  overflow: hidden;
}
html.fisher-auth-required #app {
  visibility: hidden;
  pointer-events: none;
  user-select: none;
}

.fisher-auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(2,31,20,.58);
  backdrop-filter: blur(4px);
}
.fisher-auth-overlay-required {
  background: linear-gradient(145deg, #063d25, #0a6540);
  backdrop-filter: none;
}
.fisher-auth-card {
  position: relative;
  width: min(460px, 100%);
  background: #fff;
  color: #163327;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
}
.fisher-auth-card-required {
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
}
.fisher-auth-card h2 { margin: 0 0 10px; }
.fisher-auth-card p { line-height: 1.5; }
.fisher-auth-card label { display: grid; gap: 6px; margin: 14px 0; font-weight: 700; }
.fisher-auth-card input {
  min-height: 44px;
  border: 1px solid #cbd8d1;
  border-radius: 11px;
  padding: 9px 11px;
  font: inherit;
}
.fisher-auth-card button:disabled {
  opacity: .65;
  cursor: wait;
}
.fisher-auth-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #eef5f1;
  font-size: 24px;
  cursor: pointer;
}
.fisher-auth-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.fisher-auth-error { min-height: 1.3em; color: #a52222; font-weight: 700; }
.fisher-sync-line { color: #5b6d64; }
@media (max-width: 680px) {
  .fisher-header-link { display: none; }
  .fisher-account-button { padding: 7px 9px; max-width: 120px; overflow: hidden; text-overflow: ellipsis; }
  .fisher-auth-overlay { padding: 14px; }
  .fisher-auth-card { padding: 24px 20px; }
}
