/* ============================================================
   CLAPXSE — Reportes / menú de más opciones
   ============================================================ */

.sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 80;
  display: none;
  align-items: flex-end;
}

.sheet-overlay.is-open {
  display: flex;
}

.action-sheet {
  width: 100%;
  background: var(--bg-elevated);
  border-radius: 16px 16px 0 0;
  padding: 8px 0 calc(10px + env(safe-area-inset-bottom));
}

.action-sheet button {
  width: 100%;
  text-align: center;
  padding: 15px;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

.action-sheet button.danger-action {
  color: var(--danger);
}

.action-sheet button:last-child {
  border-bottom: none;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}

.report-modal {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  background: var(--bg-elevated);
  border-radius: 16px 16px 0 0;
  padding: 20px 20px calc(20px + env(safe-area-inset-bottom));
}

.report-modal h2 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}

.reason-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.reason-option input {
  accent-color: var(--accent);
  width: 17px;
  height: 17px;
}

.report-modal textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  resize: none;
  min-height: 64px;
  margin-top: 14px;
  outline: none;
}

.report-modal .report-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.report-modal .report-actions button {
  flex: 1;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
}

.report-modal .btn-cancel {
  background: var(--bg-input);
  color: var(--text-muted);
}

.report-modal .btn-submit {
  background: var(--accent);
  color: #fff;
}

.report-modal .btn-submit:disabled {
  opacity: 0.5;
}

.report-success {
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* -------- Prompt "Inicia sesión" para invitados -------- */
.login-prompt-sheet {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  background: var(--bg-elevated);
  border-radius: 18px 18px 0 0;
  padding: 28px 24px calc(24px + env(safe-area-inset-bottom));
  text-align: center;
}

.login-prompt-logo {
  height: 26px;
  margin: 0 auto 18px;
}

.login-prompt-sheet h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.login-prompt-sheet p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.4;
}

.login-prompt-sheet .btn-primary {
  margin-bottom: 10px;
}

.login-prompt-dismiss {
  color: var(--text-faint);
  font-size: 13px;
  font-weight: 600;
}
