
        #wplife-editor-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .wplife-modal {
            background: white;
            padding: 20px;
            border-radius: 5px;
            width: 90vw;
            height: 90vh;
            overflow-y: auto;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        #wplife-password-modal {
            max-width: 400px;
            text-align: center;
        }
        
        #wplife-password-modal input {
            width: 100%;
            margin: 10px 0;
            padding: 8px;
        }
        
        .wplife-editor-tabs {
            margin-bottom: 15px;
            border-bottom: 1px solid #ccc;
            padding-bottom: 10px;
        }
        
        .tab-button {
            padding: 8px 16px;
            margin-right: 5px;
            border: 1px solid #ccc;
            background: #f1f1f1;
            cursor: pointer;
        }
        
        .tab-button.active {
            background: #0073aa;
            color: white;
            border-color: #0073aa;
        }
        
        .wplife-editor-actions {
            margin-top: 20px;
            text-align: right;
        }
        
        .wplife-editor-actions button {
            margin-left: 10px;
        }
        
        #wplife-editor-message {
            margin-top: 10px;
            padding: 10px;
            border-radius: 3px;
        }
        
        #wplife-editor-message.success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        #wplife-editor-message.error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
    