/* =============================================================================
   guard.css — Página de acesso negado (embedded-only guard)
   Segue o padrão visual do conv/styles/base.css #access-denied
   ============================================================================= */

#access-denied {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 100vh;
  padding: 32px 24px;
  text-align: center;
  background: rgb(var(--lv-slate-1, 17 17 19));
  color: rgb(var(--lv-slate-11, 176 180 186));
}

.access-denied__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(var(--lv-slate-3, 33 34 37) / 1);
  color: rgb(var(--lv-slate-9, 105 110 119));
  margin-bottom: 4px;
}

.access-denied__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgb(var(--lv-slate-12, 237 238 240));
  line-height: 1.4;
}

.access-denied__desc {
  font-size: 0.875rem;
  color: rgb(var(--lv-slate-11, 176 180 186));
  max-width: 340px;
  line-height: 1.6;
}
