/* T2 Falcon Admin — Add Client Flow */

/* === Page shell === */
.ac-page {
  background: #f7f8f9;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1;
  font-family: 'Poppins', system-ui, sans-serif;
}

/* === Top bar (matches au-topbar) === */
.ac-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0 28px;
  height: 56px;
  flex-shrink: 0;
}
.ac-topbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ac-brand-mark {
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.ac-brand-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.01em;
}
.ac-topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* button sizing unified in admin/styles.css under .au-topbar-actions .btn, .ac-topbar-actions .btn */

/* === Body (full-bleed, matches au-body) === */
.ac-body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg-page);
}
.ac-card {
  background: white;
  width: 100%;
  max-width: none;
  margin: 0;
  flex: 1;
  border: none;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}
.ac-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px 22px;
}
.ac-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.01em;
}
.ac-step-counter {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  background: var(--bg-hover);
  padding: 4px 10px;
  border-radius: 999px;
}
.ac-step-counter strong { font-weight: 600; color: var(--text); }

/* === Stepper (shared by Add Client + Add User) =========================
   Container is a 90px-tall gray bar. The 4px-high track sits exactly at
   the geometric vertical center of the bar:
       track-top = (90 - 4) / 2 = 43px
       track-center-y = 43 + 2 = 45px = bar-height / 2
   Labels render in normal flow directly below the track with a fixed
   gap. Horizontal inset is a uniform 100px on both sides. The same
   markup + CSS produces an identical stepper in both wizards.
   ===================================================================== */
.ac-stepper {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 90px;
  margin: 0 auto 20px;
  padding: 0;
  border: 0 none;
  background: rgb(248, 248, 248) none;
}
.ac-stepper-track {
  position: relative;
  height: 4px;
  margin: 43px 100px 0;
  background: var(--border);
  border-radius: 3px;
}
.ac-stepper-labels {
  position: relative;
  height: 16px;
  margin: 14px 100px 0;
  padding: 0;
  gap: 0;
}
.ac-stepper-fill {
  position: absolute;
  left: 0; top: 0; height: 100%;
  background: var(--teal);
  border-radius: 3px;
  transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.ac-stepper-dot {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  padding: 0;
  transition: all 0.25s;
  z-index: 2;
}
.ac-stepper-dot.done {
  background: var(--teal);
  cursor: pointer;
}
.ac-stepper-dot.active {
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(13, 63, 68, 0.12);
}
.ac-stepper-dot-pulse {
  width: 6px; height: 6px;
  background: white;
  border-radius: 50%;
  animation: acPulse 1.4s ease-in-out infinite;
}
@keyframes acPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.7); }
}
body[dir="rtl"] .ac-stepper-dot { transform: translate(50%, -50%); }

.ac-step-label {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  flex: none;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
  cursor: default;
  transition: color 0.15s;
}
.ac-step-label.is-clickable { cursor: pointer; }
/* All labels (including first/last) center under their dot for visual balance */
.ac-step-label:first-child,
.ac-step-label:last-child { text-align: center; }
.ac-step-label.active { color: var(--teal); font-weight: 700; }
.ac-step-label.done { color: var(--text); }

/* === Card body / animated pane === */
.ac-card-body {
  padding: 20px 30px 32px;
  flex: 1;
  overflow: visible;
}
.ac-anim-pane.in-right { animation: acSlideR 0.32s cubic-bezier(0.4, 0, 0.2, 1) both; }
.ac-anim-pane.in-left { animation: acSlideL 0.32s cubic-bezier(0.4, 0, 0.2, 1) both; }
@keyframes acSlideR {
  0% { opacity: 0; transform: translateX(20px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes acSlideL {
  0% { opacity: 0; transform: translateX(-20px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* === Profile picture block (matches au-avatar-row exactly) === */
.ac-photo-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-hover);
  border: 1px dashed var(--border);
  border-radius: 12px;
  transition: background 0.15s, border-color 0.15s;
}
.ac-photo-block:hover,
.ac-photo-block.drag-over {
  border-color: var(--teal);
  background: rgba(13, 63, 68, 0.03);
}
.ac-photo-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ac-avatar-circle {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ac-avatar-circle img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.ac-avatar-edit {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f5f1eb;
  border: 1px solid var(--border);
  border: 0;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(13, 63, 68, 0.18);
  cursor: pointer;
  transition: background 0.12s, color 0.12s, transform 0.12s;
  z-index: 2;
  /* center the badge on the circle's 5 o'clock edge */
  right: 0px;
  bottom: 0px;
  transform: translate(28%, 28%);
}
body[dir="rtl"] .ac-avatar-edit { right: auto; left: 0; transform: translate(-28%, 28%); }
.ac-avatar-edit:hover { background: var(--teal); color: #fff; }
.ac-avatar-delete {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border);
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(13, 63, 68, 0.18);
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
  z-index: 2;
  right: 0;
  top: 0;
  transform: translate(28%, -28%);
}
body[dir="rtl"] .ac-avatar-delete { right: auto; left: 0; transform: translate(-28%, -28%); }
.ac-avatar-delete:hover { background: #c0392b; color: #fff; }
.ac-avatar-mark { display: flex; }
.ac-avatar-clip { display: none; }
.ac-photo-label {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}
.ac-photo-label .sub {
  font-size: 11px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.01em;
}
.ac-photo-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ac-drop-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}
.ac-drop-hint em { font-style: normal; }
.ac-upload-btn { height: 34px; padding: 0 18px; font-size: 12.5px; font-weight: 500; }

/* === Section header (replaces nested sub-card) === */
.ac-section-block { margin-top: 28px; }
.ac-section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.ac-section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  /* text-transform: uppercase; */
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.ac-section-rule {
  /* flex: 1;
  height: 1px;
  background: var(--border-2); */
}

/* === Field grids === */
.ac-field-grid {
  display: grid;
  gap: 20px 20px;
}
.ac-grid-4 { grid-template-columns: repeat(4, 1fr); }
.ac-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.ac-field.wide { grid-column: span 2; }
.ac-label {
  font-size: 12px;
  color: var(--text-2);
  font-weight: 500;
}
.ac-label .req { color: #dc2626; margin-inline-start: 2px; }

.ac-input {
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 12px;
  font-family: inherit;
  font-size: 13px;
  background: white;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
  box-sizing: border-box;
}
.ac-input::placeholder { color: var(--text-faint); font-size: 12px; }
.ac-input:hover { border-color: #d1d5db; }
.ac-input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13, 63, 68, 0.08); }
.ac-input.error { border-color: #dc2626; background: #fef5f5; }
.ac-input:disabled { background: #fafbfc; color: var(--text-faint); cursor: not-allowed; }

.ac-error-msg {
  font-size: 11px;
  color: #dc2626;
  margin-top: -1px;
}

.ac-select-wrap { position: relative; }
.ac-select-wrap select { appearance: none; -webkit-appearance: none; padding-inline-end: 32px; }
.ac-select-chev {
  position: absolute;
  inset-inline-end: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted);
  display: flex;
}
.ac-select-wrap.small select { height: 40px; font-size: 12px; }

/* === Step 2: Settings === */
.ac-settings-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: start;
}
.ac-settings-grid.is-root-only {
  grid-template-columns: minmax(0, 1fr);
}
.ac-settings-left {
  min-width: 0;
  min-height: 356px;
  background: transparent;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 22px;
  align-self: start;
}
.ac-block-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.ac-block-title:not(:first-child) { margin-top: 26px; }

.ac-radio-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.ac-radio-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  padding: 4px 0;
}
.ac-radio-card input { display: none; }
.ac-radio-mark {
  width: 16px; height: 16px;
  border: 1.5px solid #c4c9cf;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.15s;
}
.ac-radio-card.selected .ac-radio-mark {
  border-color: var(--teal);
  border-width: 5px;
}
.ac-radio-text { display: flex; flex-direction: column; gap: 2px; }
.ac-radio-text strong { font-size: 13px; font-weight: 600; color: var(--text); }
.ac-radio-text em { font-size: 11.5px; font-style: normal; color: var(--text-muted); line-height: 1.4; }
.ac-radio-text em a { color: var(--teal); text-decoration: underline; }

/* IPs */
.ac-ip-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.ac-ip-add {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 14px;
  background: white;
  border: 1px dashed var(--teal);
  border-radius: 8px;
  color: var(--teal);
  font-size: 12.5px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  position: relative;
  transition: background 0.15s;
}
.ac-ip-add:hover { background: rgba(13, 63, 68, 0.04); }
.ac-ip-add-pin {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #e83a8a;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -7px;
  inset-inline-end: -6px;
  font-size: 10px;
  font-weight: 700;
}
.ac-ip-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 12px;
  background: #eff1f3;
  border-radius: 8px;
  font-size: 12.5px;
  color: var(--text);
}
.ac-ip-chip button {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #c4c9cf;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
}
.ac-ip-chip button:hover { background: white; color: var(--text); }
.ac-hint-text {
  font-size: 11.5px;
  color: #dc2626;
  margin-top: 8px;
}

/* Right side panel */
.ac-settings-right {
  background: var(--bg-hover);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--border-2);
}
.ac-side-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.ac-side-icon {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.ac-num-field { display: flex; flex-direction: column; gap: 6px; }
.ac-number { position: relative; }
.ac-number .ac-input { padding-inline-end: 28px; -moz-appearance: textfield; }
.ac-number .ac-input::-webkit-outer-spin-button,
.ac-number .ac-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.ac-number-arrows {
  position: absolute;
  inset-inline-end: 6px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.ac-number-arrows button {
  width: 16px; height: 14px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 3px;
}
.ac-number-arrows button:hover { color: var(--teal); background: var(--teal-light); }

/* === Step 3 + 4: Service tables === */
.ac-svc-table {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  margin: 0px;
}
.ac-svc-head, .ac-svc-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1.6fr) 180px 180px 110px;
  align-items: center;
  gap: 24px;
}
.ac-svc-row .ac-c-type .ac-select,
.ac-svc-row .ac-c-val .ac-input {
  max-width: 140px;
}
.ac-svc-row .ac-c-status .ac-status-pill {
  display: inline-flex;
  min-width: 88px;
  justify-content: center;
}
.ac-svc-head {
  font-size: 12px;
  color: var(--text-muted);
  background: #F5F5F5;
  font-weight: 500;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-2);
}
.ac-svc-row {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-2);
  transition: background 0.15s;
}
.ac-svc-row:last-child { border-bottom: 1px solid var(--border-2); }
.ac-svc-table .table-footer { border-radius: 0; }
.ac-svc-cell { display: flex; align-items: center; min-width: 0; }
.ac-c-type, .ac-c-val { width: 100%; }
.ac-c-type .ac-select-wrap, .ac-c-type .ac-select-wrap select { width: 100%; }
.ac-c-name strong { font-size: 14px; font-weight: 600; color: var(--text); }
.ac-svc-row.dim .ac-c-name strong { color: var(--text-muted); font-weight: 500; }

.ac-price-input { position: relative; width: 100%; }
.ac-price-input .ac-price-icon {
  position: absolute;
  inset-inline-start: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  display: flex;
}
.ac-price-input input { padding-inline-start: 30px; }

.ac-status-pill {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 14px;
  background: white;
  border: 1px solid #d4d8dc;
  border-radius: 999px;
  font-size: 11px;
  color: #98a0a8;
  font-weight: 500;
}
.ac-status-dash {
  color: var(--text-faint);
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* === Step 5 password === */
.ac-pwd-wrap { position: relative; }
.ac-pwd-wrap .ac-input { padding-inline-end: 36px; }
.ac-pwd-eye {
  position: absolute;
  inset-inline-end: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
}
.ac-pwd-eye:hover { color: var(--teal); }

/* === RTL polish === */
body[dir="rtl"] .ac-anim-pane.in-right { animation-name: acSlideRRtl; }
body[dir="rtl"] .ac-anim-pane.in-left { animation-name: acSlideLRtl; }
@keyframes acSlideRRtl {
  0% { opacity: 0; transform: translateX(-20px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes acSlideLRtl {
  0% { opacity: 0; transform: translateX(20px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 1100px) {
  .ac-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .ac-settings-grid { grid-template-columns: 1fr; }
  .ac-radio-cards { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .ac-photo-block { flex-direction: column; align-items: flex-start; }
}

/* ===== Sending Credentials Modal ===== */
.ac-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  animation: acFadeIn 160ms ease-out;
}
.ac-modal {
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  padding: 66px;
  animation: acModalIn 220ms cubic-bezier(.2,.8,.3,1);
}
.ac-send-modal { width: min(880px, 92vw); }
.ac-modal-close {
  position: absolute;
  top: 18px;
  inset-inline-end: 22px;
  width: 32px; height: 32px;
  background: transparent;
  border: none;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
}
.ac-modal-close:hover { background: var(--bg-hover); }

.ac-modal-head { text-align: center; margin-bottom: 22px; }
.ac-modal-title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}
.ac-modal-sub {
  margin: 0 auto;
  max-width: 520px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.ac-send-section { margin-top: 6px; margin-bottom: 40px; }
.ac-send-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.ac-send-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.ac-send-card {
  position: relative;
  background: #fff;
  border: 1.5px dashed #cfd6d8;
  border-radius: 14px;
  padding: 14px 16px 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: start;
  transition: border-color 140ms, background 140ms, box-shadow 140ms;
}
.ac-send-card:hover {
  border-color: var(--teal);
}
.ac-send-card.is-selected {
  border: 1.5px solid var(--teal);
  border-style: solid;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(13, 63, 68, 0.08);
}
.ac-send-radio {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ac-send-radio-outer {
  width: 18px; height: 18px;
  border: 2px solid #cfd6d8;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  flex: none;
}
.ac-send-card.is-selected .ac-send-radio-outer {
  border-color: var(--teal);
}
.ac-send-radio-inner {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
}
.ac-send-card-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.ac-send-illo {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ac-send-illo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.ac-send-summary {
  margin-top: 18px;
  background: #F3F8F5;
  border-radius: 12px;
  padding: 16px 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ac-send-summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.ac-send-summary-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  flex: none;
}
.ac-send-summary-key {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.ac-send-summary-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ac-modal-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 62px;
}
.ac-modal-actions .btn-link {
  background: transparent;
  border: none;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  padding: 10px 6px;
  font-size: 14px;
}
.ac-modal-actions .btn-link:hover { color: var(--teal); }

/* ===== Success Modal ===== */
.ac-success-modal {
  width: min(560px, 92vw);
  padding: 48px 56px 56px;
  text-align: center;
}
.ac-success-illo {
  margin: 0 auto 20px;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ac-success-illo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}
.ac-success-title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
.ac-success-sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

@keyframes acFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes acModalIn {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 760px) {
  .ac-send-options { grid-template-columns: 1fr; }
  .ac-send-summary { grid-template-columns: 1fr; }
  .ac-send-modal { padding: 28px 22px 22px; }
}
