/* scm-sticky-bottom-bar — 폼 페이지 하단 fixed 액션 바
 * spec (legacy reg-bottom-bar 와 일치):
 *   height = 12 + 52(button) + 12 = 76px
 *   padding: 12px 24px
 *   bg rgba(255,255,255,.70) + blur(8px)
 *   box-shadow: 0 -2px 4px rgba(0,0,0,.04)  (border-top 대신 그림자)
 */
.scm-sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: var(--scm-lnb-width, 56px);
  right: 0;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  z-index: 14;
  transition: left 0.2s ease;
  box-sizing: border-box;
}
