/**
 * Styles for the "Save to your dashboard" confirm panel that bbmt-calc-bridge.js
 * injects onto the True Hourly Wage / Replace My Hours calculator pages.
 *
 * The panel lives inside .bbmt-calculator, so the --bbmt-* design tokens from
 * bbmt-calculators.css resolve; this file only needs the layout.
 */

.bbmt-dashboard-save-confirm {
  flex-basis: 100%;
  margin: 8px auto 0;
  max-width: 34rem;
  padding: 14px 16px;
  border: 1px solid var(--bbmt-line, #988A66);
  border-radius: 10px;
  background: var(--bbmt-surface-well, rgba(0, 0, 0, 0.03));
  text-align: center;
}
.bbmt-dashboard-save-confirm[hidden] { display: none; }

.bbmt-dashboard-save-q {
  margin: 0 0 12px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--bbmt-ink, #211B14);
}

.bbmt-dashboard-save-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.bbmt-dashboard-save-actions button:disabled { opacity: 0.6; cursor: default; }
