.tb-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.tb-confirm-modal.hidden { display: none !important; }
.tb-confirm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}
.tb-confirm-card {
  position: relative;
  width: min(100%, 440px);
  padding: 1.35rem 1.5rem;
  background: var(--panel, #0c1018);
  border: 1px solid var(--border, rgba(201, 145, 124, 0.2));
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.tb-confirm-card h2 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
  color: var(--text, #f4f2ec);
}
.tb-confirm-card p {
  color: var(--muted, rgba(244, 242, 236, 0.58));
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}
.tb-confirm-field { margin-top: 0.85rem; }
.tb-confirm-field input {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border, rgba(201, 145, 124, 0.2));
  background: rgba(0, 0, 0, 0.25);
  color: var(--text, #f4f2ec);
  font-family: inherit;
  font-size: 0.9rem;
}
[data-theme="light"] .tb-confirm-field input {
  background: #fff;
  color: #0a0e16;
}
.tb-confirm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1.15rem;
}
.tb-confirm-danger {
  background: linear-gradient(135deg, #f87171, #dc2626) !important;
  color: #fff !important;
  border: none !important;
}
body.tb-confirm-open { overflow: hidden; }
