@CHARSET "UTF-8";

*{box-sizing:border-box;}

.popup-overlay { display:flex; position:fixed; top:5%; left:3%; z-index:1000; align-items:center; justify-content:center; }
.popup-overlay.hidden { display:none; }
.popup { background:#fff;  border-radius:8px; overflow:hidden; box-shadow:0 4px 20px rgba(0,0,0,0.07); }
.popup-body { width:400px; height:410px; text-align:center; font-size:16px; color:#333; min-height:160px; display:flex; align-items:center; justify-content:center; }
.popup-footer { display:flex; border-top:1px solid #e0e0e0; }
.popup-btn {flex:1; display:flex; align-items:center; justify-content:center; gap:6px; padding:14px 0; background:#f5f5f5; border:none; cursor:pointer; font-size:16px; font-family:'Pretendard'; color:#555; transition:background 0.15s; }
.popup-btn label{display:blcok!important;}
.popup-btn:hover { background:#e0e0e0; }
.popup-btn + .popup-btn { border-left:1px solid #e0e0e0; }
.popup-btn input[type="checkbox"] { width:15px; height:15px; cursor:pointer; accent-color:#3a6cf4; }