.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 24, 40, 0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-strong);
}

.btn-soft {
  background: #eef4ff;
  color: var(--brand-strong);
}

.btn-soft:hover {
  background: #dde9ff;
}

.btn-sm {
  min-height: 32px;
  padding: 0 0.65rem;
  font-size: 0.8125rem;
  border-radius: 8px;
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: #475467;
}

.btn-ghost:hover {
  background: #f9fafb;
  border-color: #98a2b3;
  color: var(--brand-strong);
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-size: 0.82rem;
  color: var(--muted);
}

.field input,
.field select {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 0.7rem;
  background: #fff;
}

.field input:focus,
.field select:focus {
  border-color: var(--brand);
  outline: 0;
}
