/* Skip link, banner de verificación de email y toasts de messages.
   Extraído de inline styles en apps/templates/base.html — equivalentes
   byte a byte para no cambiar el render. */

/* ── Skip link (accesibilidad) ─────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: #ef4444;
  color: white;
  padding: 0.6rem 1rem;
  z-index: 9999;
  font-weight: 700;
  border-radius: 0 0 0.4rem 0;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

/* ── Banner: email no verificado ───────────────────────────── */
.email-verify-banner {
  position: fixed;
  top: 4.5rem;
  left: 0;
  right: 0;
  z-index: 40;
  background: #fef3c7;
  border-bottom: 1px solid #fde68a;
  padding: 0.5rem 1.5rem;
  text-align: center;
}
.email-verify-banner__text {
  margin: 0;
  font-size: 0.78rem;
  color: #92400e;
}
.email-verify-banner__icon {
  width: 0.85rem;
  height: 0.85rem;
  display: inline;
  vertical-align: -0.15em;
  margin-right: 0.3rem;
}
.email-verify-banner__link {
  color: #b45309;
  font-weight: 600;
  text-decoration: underline;
}

/* ── Toasts: messages framework ────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.toast {
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  max-width: 22rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
}
.toast--success {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #166534;
}
.toast--error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}
