.page {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e4e4e4;
}

.page h2 {
  margin: 0 0 0.75rem;
}

.page p {
  margin: 0;
  line-height: 1.5;
}

.actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  border: none;
  border-radius: 6px;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
}

.btn-primary:hover:not(:disabled) {
  background: #1d4ed8;
}

.btn-secondary {
  background: #ffffff;
  border: 1px solid #d1d5db;
  color: #111827;
}

.btn-secondary:hover:not(:disabled) {
  background: #f3f4f6;
}

.btn-danger {
  background: #b91c1c;
  color: #fff;
}

.btn-warning {
  background: #b45309;
  color: #fff;
}

.success-message {
  color: #059669;
  font-size: 0.875rem;
  margin-top: 0.75rem;
  font-weight: 500;
}

.error-message {
  color: #b91c1c;
  font-size: 0.875rem;
  margin-top: 0.75rem;
  font-weight: 500;
}

.loading-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #374151;
  font-size: 0.875rem;
}

.spinner {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  border: 2px solid #cdd5df;
  border-top-color: #2563eb;
  animation: shared-spin 0.8s linear infinite;
  flex-shrink: 0;
}

@keyframes shared-spin {
  to {
    transform: rotate(360deg);
  }
}
