.form-modal-overlay{position:fixed;top:0;left:0;right:0;bottom:0;z-index:999999;pointer-events:auto}.form-modal-backdrop{position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.75);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);display:flex;align-items:center;justify-content:center;padding:1rem;animation:fadeIn .2s ease-out}.form-modal-container{background:rgb(var(--background));border-radius:12px;box-shadow:0 20px 25px -5px var(--shadow-color),0 10px 10px -5px var(--shadow-color);max-width:min(90vw,600px);max-height:90vh;width:100%;display:flex;flex-direction:column;position:relative;animation:slideIn .3s ease-out;border:1px solid rgb(var(--border))}.form-modal-header{display:flex;align-items:center;justify-content:space-between;padding:1.5rem;border-bottom:1px solid rgb(var(--border));background:rgb(var(--surface));border-radius:12px 12px 0 0}.form-modal-title{font-size:1.25rem;font-weight:600;color:rgb(var(--text-primary));margin:0;line-height:1.5}.form-modal-close-btn{background:none;border:none;font-size:1.25rem;color:rgb(var(--text-muted));cursor:pointer;padding:.5rem;border-radius:6px;transition:all .2s ease;display:flex;align-items:center;justify-content:center;width:36px;height:36px;line-height:1}.form-modal-close-btn:hover{background:rgb(var(--background-hover));color:rgb(var(--text-primary))}.form-modal-close-btn:focus{outline:2px solid rgb(var(--primary));outline-offset:2px}.form-modal-body{padding:1.5rem;overflow-y:auto;flex:1}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes slideIn{0%{opacity:0;transform:translateY(-20px) scale(.95)}to{opacity:1;transform:translateY(0) scale(1)}}@media (max-width:768px){.form-modal-backdrop{padding:.5rem}.form-modal-container{max-width:100vw;max-height:100vh;border-radius:0}.form-modal-header{padding:1rem;border-radius:0}.form-modal-body{padding:1rem}.form-modal-title{font-size:1.125rem}}