/* 秋招工作台 · confirm.css —— 全局统一内嵌确认弹窗 */
/* ==========================================================================
   7. 全局统一内嵌确认弹窗 (Custom In-Page Confirm Modal)
   ========================================================================== */
.confirm-modal-card {
  max-width: 420px; width: 90vw; text-align: center; padding: 26px 24px;
  border-radius: 16px; box-shadow: 0 24px 56px rgba(0,0,0,0.32), 0 0 0 1px var(--line-soft);
  animation: confirmScaleIn .2s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes confirmScaleIn {
  from { opacity: 0; transform: scale(0.92) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.confirm-modal-icon {
  font-size: 40px; line-height: 1; margin-bottom: 12px;
}
.confirm-modal-title {
  margin: 0 0 8px; font-size: 17px; font-weight: 750; color: var(--ink);
}
.confirm-modal-msg {
  margin: 0 0 22px; font-size: 13.5px; color: var(--muted); line-height: 1.55;
}
.confirm-modal-actions {
  display: flex; gap: 12px; justify-content: center;
}
.confirm-modal-actions .btn {
  min-width: 105px; justify-content: center; padding: 8px 18px; font-size: 13.5px; font-weight: 650;
}
