.btn {
  border: 0;
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: var(--text-md);
  font: inherit;
  font-family: var(--font-body);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease, background-color 0.12s ease, color 0.12s ease;
}

.btn:active {
  transform: scale(0.98);
}

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

.btn-pill {
  border-radius: var(--radius-pill);
}

.btn-sm {
  padding: 6px 14px;
  font-size: var(--text-xs);
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}

.btn-secondary {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn-soft {
  background: #eef4fb;
  color: var(--color-primary);
}

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(42, 109, 181, 0.05);
}

.card-soft {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.item-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.item-title {
  font-size: var(--text-md);
  font-weight: 800;
  color: var(--color-text);
}

.item-meta {
  margin-top: 2px;
  font-size: var(--text-xs);
  color: #6a7b8e;
}

.item-detail {
  font-size: var(--text-xs);
  color: #777;
  line-height: 1.6;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 12px;
  background: var(--color-success-bg);
  color: #155724;
}

.status-badge.pending,
.status-badge.cancel_requested {
  background: var(--color-warning-bg);
  color: var(--color-warning);
}

.status-badge.cancelled {
  background: var(--color-danger-bg);
  color: #a33131;
}

.status-badge.completed,
.status-badge.confirmed,
.status-badge.paid {
  background: var(--color-info-bg);
  color: var(--color-info);
}

.status-badge.rejected,
.status-badge.failed {
  background: var(--color-danger-bg);
  color: var(--color-danger);
}

.empty-state,
.loading-state {
  padding: 30px 20px;
  border-radius: 16px;
  background: rgba(42, 109, 181, 0.04);
  text-align: center;
  font-size: var(--text-sm);
  color: #6a7b8e;
}

.empty-state.is-error,
.loading-state.is-error {
  color: var(--color-danger);
}

.section-heading {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-text-strong);
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-heading::after {
  content: '';
  flex: 1;
  height: 2px;
  background: #f0f4f8;
  border-radius: 2px;
}
