.custom-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:1000;animation:fadeIn .2s ease-in-out}.custom-modal-container{height:100vh;width:100vw;background-color:#fff;display:flex;flex-direction:column;animation:scaleIn .2s ease-in-out}.custom-modal-header{display:flex;justify-content:space-between;align-items:center;padding:16px;border-bottom:1px solid #f0f0f0}.custom-modal-close-button{background:transparent;border:none;font-size:24px;cursor:pointer;padding:0;width:32px;height:32px;display:flex;align-items:center;justify-content:center;border-radius:50%}.custom-modal-close-button:hover{background-color:rgba(0,0,0,.05)}.custom-modal-body{flex:1;overflow-y:auto;padding:0}.custom-modal-footer{border-top:1px solid #f0f0f0;padding:16px}.full-screen-modal-content{height:100%;width:100%;display:flex;flex-direction:column}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes scaleIn{0%{transform:scale(.95)}to{transform:scale(1)}}.mobile-custom-modal-container{position:fixed;top:0;right:0;bottom:0;left:0}.mobile-modal-header{display:flex;justify-content:space-between;align-items:center;padding:16px;border-bottom:1px solid #f0f0f0}.mobile-modal-title{font-size:18px;font-weight:700}.mobile-modal-close{display:flex;align-items:center;justify-content:center;width:32px;height:32px;background-color:#f6f6f6;border-radius:50%;cursor:pointer}@media (max-width:768px){.custom-modal-container{border-radius:0}.custom-modal-footer{padding:12px 16px}}