.btn,
button {
  min-height: 40px;
  font-size: 0.9rem;
  border-radius: 10px;
  gap: 6px;
}

.btn-primary {
  background: linear-gradient(180deg, #1d4f83 0%, var(--primary) 100%);
}

.btn-secondary {
  background: #e2e8f0;
  color: #1f2937;
}

.btn-danger {
  background: linear-gradient(180deg, #ef4444 0%, var(--danger) 100%);
}

.btn-success {
  background: linear-gradient(180deg, #22c55e 0%, var(--success) 100%);
}

.btn-icon {
  min-width: 38px;
  padding: 8px 10px;
}

.btn-icon i {
  width: 15px;
  height: 15px;
}

.confirm-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(2, 6, 23, 0.45);
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.confirm-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.confirm-modal-card {
  width: min(420px, calc(100% - 24px));
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
  padding: 18px;
}

.confirm-modal-card h3 {
  margin: 0 0 10px;
}

.confirm-modal-card p {
  margin: 0 0 14px;
}

.confirm-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
