/* Error page styling */
.body--error {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--color-surface-base);
}

.error-container {
  width: 100%;
  max-width: 48rem;
  padding: var(--size-6);
}

/* Error display components */
.error-code {
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  margin-block-end: var(--size-4);
}

.error-message {
  font-size: var(--text-xl); 
  margin-block-end: var(--size-2);
}

.backtrace-container {
  max-height: 20rem;
  overflow-y: auto;
}
