/* 공통 모달 다이얼로그 스타일 */
#sdgOverlay{position:fixed; inset:0; background:rgba(0,0,0,0.5); display:none; z-index:9998;}
#sdgModal{position:fixed; left:50%; top:50%; transform:translate(-50%, -50%); width:90%; max-width:480px; background:#fff; border-radius:12px; box-shadow:0 8px 16px rgba(0,0,0,0.12); display:none; z-index:9999;}
#sdgModal .sdg__inner{padding:20px;}
#sdgModal .sdg__body{margin-bottom:16px;}
#sdgModal .sdg__message{color:#1C1C1D; font-size:16px; font-weight:600; line-height:1.5; white-space:pre-line;}
#sdgModal .sdg__buttons{display:flex; gap:8px; justify-content:flex-end;}
#sdgModal .sdg__btn{min-width:84px; height:40px; border-radius:8px; border:1px solid #E5E5EC; background:#fff; color:#1C1C1D; font-weight:600; cursor:pointer;}
#sdgModal .sdg__btn--ok{background:#004AAD; color:#fff; border-color:#004AAD;}
#sdgModal .sdg__btn--cancel{background:#F8F8FA; color:#7E8389;}
