/* ============================================================
   styles-additions-v10.css — Sprint 4.1 patches
   - z-index fix: outcome modal must sit above touch detail modal
   - quote panel + Log a touch button styling
   ============================================================ */

/* z-index stacking. Higher = on top. */
.tdm-overlay { z-index: 200; }
.qdm-overlay { z-index: 200; }
.qm-overlay  { z-index: 210; }
.tom-overlay { z-index: 9999; }  /* always on top — outcome modal opens FROM other modals */

/* Quote panel: + Log a touch button matches the existing convert-quote button */
.qdm-log-touch {
  background: #E6F1FB;
  color: #1F5D9D;
  border: 1px solid #B5D2EE;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.12s;
}
.qdm-log-touch:hover {
  background: #1F5D9D;
  color: white;
  border-color: #1F5D9D;
}
