.modal-overlay{position:fixed;inset:0;z-index:1200;background-color:rgba(0,0,0,.5);animation:overlayShow .15s cubic-bezier(.16,1,.3,1)}.modal-content{position:fixed;left:50%;top:50%;z-index:1300;max-height:85vh;max-width:90vw;transform:translate(-50%,-50%);background-color:white;border-radius:16px;box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05);animation:contentShow .15s cubic-bezier(.16,1,.3,1);overflow-y:auto}.modal-content:focus{outline:none}.modal-header{display:flex;flex-direction:column;gap:8px;margin-bottom:16px}.modal-footer{display:flex;flex-direction:row;justify-content:flex-end;gap:12px;margin-top:24px}.modal-title{font-size:20px;font-weight:600;line-height:1.2;color:#0f172a}.modal-description{font-size:14px;line-height:1.5;color:#64748b}@keyframes overlayShow{0%{opacity:0}to{opacity:1}}@keyframes contentShow{0%{opacity:0;transform:translate(-50%,-48%) scale(.96)}to{opacity:1;transform:translate(-50%,-50%) scale(1)}}@media screen and (max-width:1024px){.modal-content{width:95vw;max-width:none}.modal-footer{flex-direction:column;gap:8px}.modal-footer button{width:100%}}