.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .12s ease;
}
.btn-primary { background: #3AA7E2; color: #fff; }
.btn-primary:hover { background: #6EC1FF; }
.btn-primary:disabled { opacity: .6; cursor: default; }
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.12);
}
.btn-ghost:hover { background: rgba(255,255,255,.06); }
.btn-ghost:disabled { opacity: .4; cursor: default; }
.btn-danger { background: #d93838; color: #fff; }
.btn-danger:hover { background: #b82a2a; }
.btn-danger:disabled { opacity: .6; cursor: default; }

.confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
}
.confirm-overlay[hidden] { display: none; }
.confirm-modal {
  background: #141F33;
  color: #DCE4F0;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 20px 22px;
  min-width: 320px;
  max-width: 440px;
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
}
.confirm-title { font-weight: 600; font-size: 15px; margin-bottom: 8px; color: #DCE4F0; }
.confirm-message { color: #B7C3D8; font-size: 13px; margin-bottom: 18px; line-height: 1.45; }
.confirm-actions { display: flex; justify-content: flex-end; gap: 8px; }

/* Block 1502 — opt-in textarea input field (inputField config in Confirm.show). */
.confirm-input-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.confirm-textarea {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.04);
  color: #DCE4F0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 10px;
  font-size: 13px;
  font-family: inherit;
  min-height: 80px;
  resize: vertical;
}
.confirm-textarea:focus {
  outline: none;
  border-color: #3AA7E2;
}
.confirm-counter {
  font-size: 12px;
  color: #93a4c0;
  text-align: right;
}
.confirm-counter--invalid {
  color: #ef4444;
}
