#swo-popup { display:none; position:fixed; top:0;left:0;right:0;bottom:0; z-index:10000; align-items:center; justify-content:center; font-family:sans-serif; }
#swo-popup.shown { display:flex; animation:swoFadeIn 0.5s ease forwards; }
@keyframes swoFadeIn { from{opacity:0;} to{opacity:1;} }
.swo-backdrop { position:absolute; top:0;left:0;right:0;bottom:0; background-color:rgba(0,0,0,0.5); }
.swo-modal { position:relative; background:#fdecef; padding:30px 20px; width:320px; margin:auto; z-index:10001; text-align:center; border-radius:8px; box-shadow:0 5px 20px rgba(0,0,0,0.3); }
.swo-close { position:absolute; top:10px;right:15px; font-size:22px; border:none; background:none; cursor:pointer; }
.swo-message { font-size:18px; margin-bottom:15px; color:#333; }
.swo-spin { background-color:#f47a9c; border:none; padding:10px 20px; color:white; font-size:16px; margin-top:20px; border-radius:4px; cursor:pointer; }
.swo-result { margin-top:15px; font-size:16px; font-weight:bold; color:#333; }