.prompt-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.5);display:flex;justify-content:center;align-items:center;z-index:10000;animation:fadeIn .2s ease-out}.prompt-dialog{background:white;border-radius:8px;box-shadow:0 10px 25px rgba(0,0,0,.2);min-width:400px;max-width:500px;animation:slideIn .2s ease-out}.prompt-header{padding:1.5rem 1.5rem 0}.prompt-header h3{margin:0;font-size:1.2rem;color:#333;font-weight:600}.prompt-body{padding:1rem 1.5rem}.prompt-message{margin:0 0 1rem;color:#666;line-height:1.4}.prompt-input{width:100%;padding:.75rem;border:2px solid #e5e7eb;border-radius:6px;font-size:1rem;transition:border-color .2s;box-sizing:border-box}.prompt-input:focus{outline:none;border-color:#3b82f6;box-shadow:0 0 0 3px rgba(59,130,246,.1)}.prompt-error{margin:.5rem 0 0;color:#ef4444;font-size:.875rem}.prompt-footer{padding:0 1.5rem 1.5rem;display:flex;gap:.75rem;justify-content:flex-end}.prompt-btn{padding:.75rem 1.5rem;border:none;border-radius:6px;font-size:.9rem;font-weight:500;cursor:pointer;transition:all .2s;min-width:80px}.prompt-btn-cancel{background:#f3f4f6;color:#374151}.prompt-btn-cancel:hover{background:#e5e7eb}.prompt-btn-confirm{background:var(--primary);color:white}.prompt-btn-confirm:hover{background:var(--primaryHover)}.prompt-textarea{width:100%;padding:.75rem;border:2px solid #e5e7eb;border-radius:6px;font-size:1rem;font-family:inherit;transition:border-color .2s;box-sizing:border-box;resize:vertical;min-height:120px}.prompt-textarea:focus{outline:none;border-color:#3b82f6;box-shadow:0 0 0 3px rgba(59,130,246,.1)}.prompt-hint{margin:.5rem 0 0;color:#6b7280;font-size:.8rem;font-style:italic}@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)}}