/**handles:vcon-modal-system,vcon-video-edit-modal**/
.vcon-modal{position:fixed;top:0;left:0;width:100%;height:100%;z-index:999999;display:none;align-items:center!important;justify-content:center!important;opacity:0;transition:opacity .3s ease;pointer-events:none}.vcon-modal.vcon-modal-open{display:flex!important;opacity:1!important;pointer-events:auto}body.vcon-modal-active{overflow:hidden}.vcon-modal-overlay{display:none!important}@keyframes vcon-modal-fade-in{from{opacity:0}to{opacity:1}}.vcon-modal-container{position:relative;max-width:600px;width:90%;max-height:90vh;background:#fff!important;border-radius:8px;box-shadow:0 10px 40px rgba(0,0,0,.3);overflow:hidden;display:flex!important;flex-direction:column;animation:vcon-modal-slide-up .3s ease;z-index:1000}@keyframes vcon-modal-slide-up{from{transform:translateY(50px);opacity:0}to{transform:translateY(0);opacity:1}}.vcon-modal-header{display:flex!important;align-items:center!important;justify-content:space-between!important;padding:1.5rem 2rem;border-bottom:1px solid #e0e0e0;background:#f9f9f9;visibility:visible!important}.vcon-modal-title{margin:0;font-size:1.5rem;font-weight:600;color:#1e1e1e}.vcon-modal-close{background:0 0;border:none;font-size:2rem;line-height:1;cursor:pointer;padding:0;width:32px;height:32px;display:flex;align-items:center;justify-content:center;color:#646970;border-radius:4px;transition:all .2s ease}.vcon-modal-close:hover{background:#e0e0e0;color:#1e1e1e}.vcon-modal-close:focus{outline:2px solid #2271b1;outline-offset:2px}.vcon-modal-body{padding:2rem!important;overflow-y:auto!important;overflow-x:hidden!important;flex:1!important;display:block!important;visibility:visible!important;box-sizing:border-box}.vcon-modal-icon{display:flex;align-items:center;justify-content:center;margin-bottom:1.5rem;color:#646970}.vcon-modal-icon svg{width:64px;height:64px}.vcon-modal-icon-warning{color:#d63638}.vcon-modal-message{text-align:center;font-size:1rem;line-height:1.6;color:#646970;margin:0 0 1.5rem}.vcon-modal-description{font-size:.9375rem;line-height:1.6;color:#646970;margin:0 0 1rem}.vcon-modal-description strong{color:#1e1e1e}.vcon-modal-actions{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin-top:1.5rem}.vcon-modal-footer{padding:1.5rem 2rem;border-top:1px solid #e0e0e0;background:#f9f9f9;display:none;justify-content:flex-end;gap:1rem}.vcon-modal-footer:not(:empty){display:flex}.vcon-button{display:inline-flex;align-items:center;justify-content:center;padding:.75rem 1.5rem;border:1px solid;border-radius:4px;font-size:.9375rem;font-weight:600;text-decoration:none;cursor:pointer;transition:all .2s ease;white-space:nowrap}.vcon-button-primary{background:#2271b1;border-color:#2271b1;color:#fff}.vcon-button-primary:hover{background:#135e96;border-color:#135e96;color:#fff}.vcon-button-primary:focus{outline:2px solid #2271b1;outline-offset:2px}.vcon-button-secondary{background:#fff;border-color:#2271b1;color:#2271b1}.vcon-button-secondary:hover{background:#f6f7f7;color:#135e96;border-color:#135e96}.vcon-button-secondary:focus{outline:2px solid #2271b1;outline-offset:2px}.vcon-button-danger{background:#d63638;border-color:#d63638;color:#fff}.vcon-button-danger:hover{background:#b32d2e;border-color:#b32d2e;color:#fff}.vcon-button-danger:focus{outline:2px solid #d63638;outline-offset:2px}.vcon-link-button{background:0 0;border:none;color:#2271b1;text-decoration:underline;cursor:pointer;font-size:.9375rem;padding:0;transition:color .2s ease}.vcon-link-button:hover{color:#135e96}.vcon-link-button:focus{outline:2px solid #2271b1;outline-offset:2px;border-radius:2px}.vcon-modal-form{display:flex;flex-direction:column;gap:1.25rem;text-align:left;box-sizing:border-box;width:100%}.vcon-modal-form *,.vcon-modal-form ::after,.vcon-modal-form ::before{box-sizing:border-box}.vcon-form-field{display:flex;flex-direction:column;gap:.5rem;box-sizing:border-box;width:100%}.vcon-modal-body label{display:block;margin-bottom:.25rem;font-weight:600;color:#1e1e1e;font-size:.9375rem}.vcon-modal-body label .required{color:#d63638}.vcon-modal-body input[type=email],.vcon-modal-body input[type=password],.vcon-modal-body input[type=text],.vcon-modal-body select,.vcon-modal-body textarea{width:100%;max-width:100%;padding:.75rem;border:1px solid #ddd;border-radius:4px;font-size:1rem;transition:border-color .2s ease;box-sizing:border-box}.vcon-modal-body input[type=email]:focus,.vcon-modal-body input[type=password]:focus,.vcon-modal-body input[type=text]:focus,.vcon-modal-body select:focus,.vcon-modal-body textarea:focus{outline:0;border-color:#2271b1;box-shadow:0 0 0 1px #2271b1}.vcon-modal-body textarea{min-height:100px;resize:vertical}.vcon-field-help{display:block;font-size:.8125rem;color:#646970;margin-top:.25rem}.vcon-modal-form .vcon-modal-actions{margin-top:.5rem}.vcon-modal-error{padding:.75rem 1rem;background:#fcf0f1;border:1px solid #f0c0c0;border-radius:4px;color:#d63638;margin-bottom:1rem}.vcon-modal-success{padding:.75rem 1rem;background:#d4f4dd;border:1px solid #a7e6b4;border-radius:4px;color:#1e4620;margin-bottom:1rem}.vcon-modal-loading{position:relative;pointer-events:none;opacity:.6}.vcon-modal-loading::after{content:'';position:absolute;top:50%;left:50%;width:32px;height:32px;margin:-16px 0 0 -16px;border:3px solid #2271b1;border-top-color:transparent;border-radius:50%;animation:vcon-modal-spin .8s linear infinite}@keyframes vcon-modal-spin{to{transform:rotate(360deg)}}@media (max-width:768px){.vcon-modal-container{width:95%;max-height:95vh}.vcon-modal-body,.vcon-modal-footer,.vcon-modal-header{padding:1.25rem 1.5rem}.vcon-modal-title{font-size:1.25rem}.vcon-modal-actions{flex-direction:column}.vcon-button{width:100%}}@media (max-width:480px){.vcon-modal-body,.vcon-modal-footer,.vcon-modal-header{padding:1rem}.vcon-modal-title{font-size:1.125rem}.vcon-modal-icon svg{width:48px;height:48px}}.vcon-modal[aria-hidden=true]{display:none}.vcon-modal :focus{outline-offset:2px}@media (prefers-contrast:high){.vcon-modal-overlay{background:rgba(0,0,0,.9)}.vcon-modal-container{border:2px solid currentColor}}@media (prefers-reduced-motion:reduce){.vcon-button,.vcon-modal,.vcon-modal-container,.vcon-modal-overlay{animation:none;transition:none}}
.vcon-modal{position:fixed;top:0;left:0;right:0;bottom:0;z-index:999999;display:flex;align-items:center;justify-content:center}.vcon-modal-overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.7);cursor:pointer;z-index:1;pointer-events:auto}.vcon-modal-container{position:relative;background:#fff;border-radius:8px;box-shadow:0 10px 40px rgba(0,0,0,.3);max-width:600px;width:90%;max-height:90vh;display:flex;flex-direction:column;z-index:10;pointer-events:auto}.vcon-modal-header{display:flex;align-items:center;justify-content:space-between;padding:20px 24px;border-bottom:1px solid #e5e7eb}.vcon-modal-header h2{margin:0;font-size:20px;font-weight:600;color:#111827}.vcon-modal-close{background:0 0;border:none;font-size:28px;line-height:1;color:#6b7280;cursor:pointer;padding:0;width:32px;height:32px;display:flex;align-items:center;justify-content:center;border-radius:4px;transition:all .2s}.vcon-modal-close:hover{background:#f3f4f6;color:#111827}.vcon-modal-body{padding:24px;overflow-y:auto;flex:1}.vcon-modal-footer{display:flex;align-items:center;justify-content:flex-end;gap:12px;padding:16px 24px;border-top:1px solid #e5e7eb;background:#f9fafb;border-radius:0 0 8px 8px}.vcon-form-field{margin-bottom:20px}.vcon-form-field label{display:block;margin-bottom:6px;font-weight:500;color:#374151;font-size:14px}.vcon-form-field .required{color:#dc2626;margin-left:2px}.vcon-input,.vcon-select,.vcon-textarea{width:100%;padding:10px 12px;border:1px solid #d1d5db;border-radius:6px;font-size:14px;line-height:1.5;transition:border-color .2s,box-shadow .2s}.vcon-input:focus,.vcon-select:focus,.vcon-textarea:focus{outline:0;border-color:#3b82f6;box-shadow:0 0 0 3px rgba(59,130,246,.1)}.vcon-textarea{resize:vertical;min-height:100px}.vcon-button{display:inline-flex;align-items:center;justify-content:center;padding:10px 20px;border-radius:6px;font-size:14px;font-weight:500;cursor:pointer;transition:all .2s;border:none;text-decoration:none;white-space:nowrap}.vcon-button-primary{background:#3b82f6;color:#fff}.vcon-button-primary:hover{background:#2563eb}.vcon-button-primary:disabled{background:#93c5fd;cursor:not-allowed}.vcon-button-secondary{background:#fff;color:#374151;border:1px solid #d1d5db}.vcon-button-secondary:hover{background:#f9fafb;border-color:#9ca3af}.vcon-current-video-info{padding:12px;background:#f3f4f6;border-radius:6px;margin-bottom:16px}.vcon-current-video-info p{margin:0;font-size:14px;color:#4b5563}.vcon-current-video-info strong{color:#111827;font-family:monospace}.vcon-video-upload-options{margin-top:12px}.vcon-file-info{margin-top:8px;font-size:13px;color:#6b7280}.vcon-upload-progress{margin-top:16px}.vcon-progress-bar{height:8px;background:#e5e7eb;border-radius:4px;overflow:hidden;margin-bottom:8px}.vcon-progress-fill{height:100%;background:linear-gradient(90deg,#3b82f6,#2563eb);width:0%;transition:width .3s;border-radius:4px}.vcon-progress-text{font-size:14px;color:#6b7280;margin:0}.vcon-notice{padding:12px 16px;border-radius:6px;margin-bottom:16px;border-left:4px solid}.vcon-notice p{margin:0;font-size:14px}.vcon-notice-info{background:#eff6ff;border-color:#3b82f6;color:#1e40af}.vcon-notice-success{background:#f0fdf4;border-color:#22c55e;color:#166534}.vcon-notice-error{background:#fef2f2;border-color:#ef4444;color:#991b1b}.vcon-notice-warning{background:#fffbeb;border-color:#f59e0b;color:#92400e}@media (max-width:640px){.vcon-modal-container{width:95%;max-height:95vh}.vcon-modal-body,.vcon-modal-footer,.vcon-modal-header{padding:16px}.vcon-modal-footer{flex-direction:column}.vcon-button{width:100%}}.vcon-file-input{display:block;width:100%;padding:10px;border:1px dashed #d1d5db;border-radius:6px;font-size:14px;cursor:pointer;transition:border-color .2s}.vcon-file-input:hover{border-color:#9ca3af}.vcon-file-input:focus{outline:0;border-color:#3b82f6;border-style:solid}.vcon-current-videos-list{margin-bottom:16px}.vcon-video-list-item{display:flex;align-items:center;justify-content:space-between;padding:12px;background:#f9fafb;border:1px solid #e5e7eb;border-radius:6px;margin-bottom:8px}.vcon-video-info{flex:1;display:flex;align-items:center;gap:8px;font-size:14px}.vcon-video-info strong{font-family:monospace;color:#111827}.vcon-library-badge{display:inline-block;padding:2px 8px;background:#dbeafe;color:#1e40af;border-radius:4px;font-size:12px;font-weight:500}.vcon-button-small{padding:6px 12px;font-size:13px}.vcon-button-danger{background:#ef4444;color:#fff}.vcon-button-danger:hover{background:#dc2626}.vcon-no-videos{padding:16px;text-align:center;color:#6b7280;background:#f9fafb;border:1px dashed #d1d5db;border-radius:6px;margin:0;font-size:14px}.media-modal-backdrop{z-index:1000001!important}.media-modal{z-index:1000002!important}.vcon-bunny-thumbnail-modal{position:fixed;top:0;left:0;right:0;bottom:0;z-index:1000000;display:flex;align-items:center;justify-content:center;pointer-events:auto}.vcon-bunny-thumbnail-modal-overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.5);cursor:pointer;z-index:1;pointer-events:auto}.vcon-bunny-thumbnail-modal-container{position:relative;background:#fff;border-radius:8px;box-shadow:0 10px 40px rgba(0,0,0,.3);max-width:700px;width:95%;max-height:80vh;display:flex;flex-direction:column;z-index:10;pointer-events:auto}.vcon-bunny-thumbnail-modal-header{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;border-bottom:1px solid #e5e7eb}.vcon-bunny-thumbnail-modal-header h3{margin:0;font-size:16px;font-weight:600;color:#111827}.vcon-bunny-thumbnail-modal-close{background:0 0;border:none;font-size:24px;line-height:1;color:#6b7280;cursor:pointer;padding:0;width:28px;height:28px;display:flex;align-items:center;justify-content:center;border-radius:4px;transition:all .2s}.vcon-bunny-thumbnail-modal-close:hover{background:#f3f4f6;color:#111827}.vcon-bunny-thumbnail-modal-content{padding:20px;overflow-y:auto;flex:1}.vcon-bunny-thumbnail-loading{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:40px 20px;color:#6b7280}.vcon-bunny-thumbnail-loading .spinner{margin-bottom:12px}.vcon-bunny-thumbnail-loading p{margin:0;font-size:14px}.vcon-bunny-thumbnail-empty{padding:40px 20px;text-align:center;color:#6b7280}.vcon-bunny-thumbnail-empty p{margin:0;font-size:14px}.vcon-bunny-thumbnail-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:16px}.vcon-bunny-thumbnail-item{background:#f9fafb;border:2px solid #e5e7eb;border-radius:8px;overflow:hidden;cursor:pointer;transition:all .2s}.vcon-bunny-thumbnail-item:hover{border-color:#3b82f6;box-shadow:0 4px 12px rgba(59,130,246,.15)}.vcon-bunny-thumbnail-item:hover .vcon-bunny-thumbnail-image-wrapper img{transform:scale(1.05)}.vcon-bunny-thumbnail-image-wrapper{position:relative;padding-bottom:56.25%;background:#e5e7eb;overflow:hidden}.vcon-bunny-thumbnail-image-wrapper img{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;transition:transform .2s}.vcon-bunny-thumbnail-info{padding:10px 12px;display:flex;flex-direction:column;gap:4px}.vcon-bunny-thumbnail-title{font-size:13px;font-weight:500;color:#374151;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.vcon-bunny-thumbnail-duration{font-size:12px;color:#6b7280;font-family:monospace}@media (max-width:500px){.vcon-bunny-thumbnail-grid{grid-template-columns:repeat(2,1fr);gap:12px}.vcon-bunny-thumbnail-modal-container{max-height:90vh}.vcon-bunny-thumbnail-info{padding:8px 10px}.vcon-bunny-thumbnail-title{font-size:12px}}.vcon-bunny-video-details{padding:0}.vcon-bunny-video-details-header{display:flex;align-items:center;gap:12px;padding-bottom:16px;border-bottom:1px solid #e5e7eb;margin-bottom:20px}.vcon-bunny-video-details-header h4{margin:0;font-size:15px;font-weight:600;color:#374151}.vcon-bunny-video-details-back{background:0 0;border:1px solid #d1d5db;padding:6px 12px;border-radius:4px;font-size:13px;color:#374151;cursor:pointer;transition:all .2s}.vcon-bunny-video-details-back:hover{background:#f3f4f6;border-color:#9ca3af}.vcon-bunny-video-details-content{display:flex;gap:20px;margin-bottom:20px}.vcon-bunny-video-details-preview{flex:0 0 280px;border-radius:8px;overflow:hidden;background:#e5e7eb}.vcon-bunny-video-details-preview img{width:100%;height:auto;display:block}.vcon-bunny-video-details-info{flex:1;display:flex;flex-direction:column;gap:12px}.vcon-bunny-detail-row{display:flex;flex-direction:column;gap:4px}.vcon-bunny-detail-row label{font-size:12px;font-weight:600;color:#6b7280;text-transform:uppercase;letter-spacing:.05em}.vcon-bunny-detail-row span{font-size:14px;color:#111827}.vcon-bunny-detail-row .vcon-monospace{font-family:ui-monospace,SFMono-Regular,"SF Mono",Menlo,Consolas,monospace;font-size:13px;background:#f3f4f6;padding:4px 8px;border-radius:4px;word-break:break-all}.vcon-bunny-video-details-actions{display:flex;gap:12px;padding-top:16px;border-top:1px solid #e5e7eb}.vcon-bunny-video-details-actions .vcon-button{flex:1}@media (max-width:600px){.vcon-bunny-video-details-content{flex-direction:column}.vcon-bunny-video-details-preview{flex:none;max-width:100%}.vcon-bunny-video-details-actions{flex-direction:column}}.vcon-richtext-editor{border:1px solid #ddd;border-radius:4px;overflow:hidden;background:#fff}.vcon-richtext-toolbar{display:flex;flex-wrap:wrap;gap:2px;padding:6px 8px;background:#f5f5f5;border-bottom:1px solid #ddd}.vcon-richtext-btn{display:flex;align-items:center;justify-content:center;width:32px;height:32px;padding:0;border:1px solid transparent;border-radius:4px;background:0 0;cursor:pointer;font-size:14px;color:#333;transition:all .15s ease}.vcon-richtext-btn:hover{background:#e0e0e0;border-color:#ccc}.vcon-richtext-btn:active{background:#d0d0d0}.vcon-richtext-separator{width:1px;height:24px;margin:4px 6px;background:#ddd}.vcon-richtext-content{min-height:120px;max-height:300px;padding:12px;overflow-y:auto;font-size:14px;line-height:1.6;outline:0}.vcon-richtext-content:empty::before{content:attr(data-placeholder);color:#999;pointer-events:none}.vcon-richtext-content:focus{outline:0}.vcon-richtext-content p{margin:0 0 .75em 0}.vcon-richtext-content p:last-child{margin-bottom:0}.vcon-richtext-content ol,.vcon-richtext-content ul{margin:0 0 .75em 0;padding-left:1.5em}.vcon-richtext-content a{color:#3182ce;text-decoration:underline}.vcon-richtext-editor:focus-within{border-color:#3182ce;box-shadow:0 0 0 1px #3182ce}