.shell-status {
  max-width: 1280px;
  margin: 0 auto 18px;
  padding: 11px 14px;
  border: 1px solid #f3c8d9;
  border-radius: 12px;
  background: #fff;
  color: #7c294f;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(25, 32, 56, .05);
}

[data-status-type="success"] {
  border-color: #b8e4ca;
  background: #e7f7ee;
  color: #146c43;
}

[data-status-type="warning"] {
  border-color: #f4d28c;
  background: #fff8e8;
  color: #7a4c00;
}

[data-status-type="error"] {
  border-color: #ffc9c5;
  background: #fff0ef;
  color: #b42318;
}

[aria-disabled="true"] {
  opacity: .72;
  cursor: not-allowed;
}

.global-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(53, 19, 36, .28);
}

.global-loading-card {
  min-width: min(100%, 280px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 22px;
  border-radius: 16px;
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  box-shadow: var(--shadow);
}

.loading-spinner {
  width: 22px;
  height: 22px;
  border: 3px solid var(--primary-soft);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: loading-rotation .8s linear infinite;
}

.component-error {
  position: relative;
  z-index: 10;
  text-align: center;
}

.component-error .primary-btn {
  margin-top: 12px;
}

.empty-state {
  margin: 0;
  padding: 18px;
  border: 1px dashed var(--border);
  border-radius: 12px;
  color: var(--muted);
  text-align: center;
}

@keyframes loading-rotation {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .loading-spinner {
    animation: none;
  }
}
