.modal-backdrop{position:fixed;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,.5);display:flex;align-items:center;justify-content:center;z-index:var(--z-modal-backdrop,1040);padding:1rem;animation:modal-backdrop-in .15s ease-out}.modal-backdrop--high{z-index:var(--z-modal-backdrop-high,1060)}@keyframes modal-backdrop-in{0%{opacity:0}to{opacity:1}}.modal{background-color:#fff;border-radius:45px;box-shadow:var(--shadow-xl);max-height:90vh;width:100%;display:flex;flex-direction:column;overflow:hidden;outline:none;animation:modal-in .2s ease-out}@keyframes modal-in{0%{opacity:0;transform:scale(.95) translateY(-10px)}to{opacity:1;transform:scale(1) translateY(0)}}.modal--sm{max-width:400px}.modal--md{max-width:600px}.modal--lg{max-width:800px}.modal--xl{max-width:1200px}.modal--full{max-width:95vw;max-height:95vh}.modal-header{display:flex;align-items:center;justify-content:space-between;padding:1.5rem;border-bottom:1px solid var(--bg-secondary);flex-shrink:0}.modal-title{margin:0;font-size:1.25rem;font-weight:600;color:var(--text-primary);flex:1 1}.modal-close{display:flex;align-items:center;justify-content:center;width:2rem;height:2rem;background:none;border:none;border-radius:var(--border-radius);color:var(--text-muted);cursor:pointer;transition:all var(--transition-fast);flex-shrink:0;margin-left:1rem}.modal-close:hover{background-color:var(--bg-secondary);color:var(--text-primary)}.modal-close:focus{outline:none;box-shadow:0 0 0 2px rgba(0,113,243,.2)}.modal-close__icon{font-size:1.25rem;line-height:1}.modal-content{flex:1 1;padding:1.5rem;overflow-y:auto;min-height:0}.modal-footer{display:flex;align-items:center;justify-content:flex-end;gap:.75rem;padding:1.5rem;border-top:1px solid var(--bg-secondary);flex-shrink:0}.modal-footer--left{justify-content:flex-start}.modal-footer--center{justify-content:center}.modal-footer--between{justify-content:space-between}.modal-content--scrollable{max-height:400px;overflow-y:auto}.modal-body{padding:0}.modal-body__section{margin-bottom:1.5rem}.modal-body__section:last-child{margin-bottom:0}.modal-body__title{font-size:1rem;font-weight:600;color:var(--text-primary);margin-bottom:.5rem}.modal-body__text{font-size:.875rem;color:var(--text-secondary);line-height:1.5}@media (max-width:768px){.modal-backdrop{padding:.5rem}.modal--lg,.modal--xl{max-width:95vw}.modal-content,.modal-header{padding:1rem}.modal-footer{padding:1rem;flex-direction:column;gap:.5rem}.modal-footer button{width:100%}.modal-title{font-size:1.125rem}}@media (max-width:480px){.modal-backdrop{padding:.25rem}.modal--lg,.modal--md,.modal--sm,.modal--xl{max-width:100%;max-height:100%;border-radius:0}.modal{animation:modal-in-mobile .2s ease-out}@keyframes modal-in-mobile{0%{opacity:0;transform:translateY(100%)}to{opacity:1;transform:translateY(0)}}}