.exc-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.exc-out {
  margin: 0;
  min-height: 4.5em;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(234, 88, 12, 0.08);
  border: 1px solid rgba(234, 88, 12, 0.2);
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.5;
  color: var(--text);
}

.exc-out--pop {
  animation: exc-pop 0.45s ease;
}

@keyframes exc-pop {
  from {
    transform: scale(0.97);
    opacity: 0.4;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.exc-actions {
  display: flex;
  justify-content: center;
}
