/* ZipNyt Web auth + billing stubs (additive) */

.preview-banner.has-account-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.zipity-account-chip {
  flex-shrink: 0;
  border: 1px solid rgba(45, 90, 61, 0.35);
  background: #fff;
  color: #2d5a3d;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
}
.zipity-account-chip.is-signed-in {
  background: #2d5a3d;
  color: #f5f0e6;
  border-color: #2d5a3d;
}

.side-nav-account {
  margin-top: 8px;
}

.auth-sheet,
.billing-sheet {
  max-height: min(90vh, 640px);
  overflow-y: auto;
}

.auth-stub-note {
  margin: 0 0 12px;
}

.auth-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.auth-tab {
  flex: 1;
  border: 1px solid rgba(45, 90, 61, 0.25);
  background: #f5f0e6;
  color: #2d5a3d;
  font: inherit;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
}
.auth-tab.is-active {
  background: #2d5a3d;
  color: #f5f0e6;
  border-color: #2d5a3d;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.auth-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: #2d5a3d;
}
.auth-field em {
  font-style: normal;
  font-weight: 500;
  opacity: 0.75;
  font-size: 11px;
}
.auth-field input {
  font: inherit;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(45, 90, 61, 0.3);
  background: #fff;
  color: #1a1a1a;
}
.auth-error {
  margin: 0;
  padding: 8px 10px;
  border-radius: 8px;
  background: #fde8e8;
  color: #8b1e1e;
  font-size: 13px;
}
.auth-magic {
  width: 100%;
}
.auth-signed-in {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.auth-session-line {
  margin: 0;
  font-size: 14px;
  color: #2d5a3d;
}

.billing-rail-badge {
  display: inline-block;
  margin: 0 0 8px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(184, 115, 51, 0.15);
  color: #8a4b1f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.billing-sheet .plan {
  width: 100%;
  text-align: left;
  cursor: pointer;
  font: inherit;
}
.billing-sheet .btn-outline {
  width: 100%;
  margin-top: 8px;
}
.billing-ticket-note {
  margin-top: 4px;
}
.web-billing-note {
  margin-top: 10px;
}

.btn-outline {
  border: 1.5px solid #2d5a3d;
  background: transparent;
  color: #2d5a3d;
  font: inherit;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
}

.preview-banner-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
