
        .entry-content[data-ast-blocks-layout] > * {
         max-width: none !important;
         margin-left: 0 !important;
         margin-right: 0 !important;
       }
        /* Modal Styles */
        .visu-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            animation: fadeIn 0.3s ease;
        }
        
        .visu-modal-content {
            background-color: white;
            margin: 10% auto;
            padding: 0;
            width: 90%;
            max-width: 500px;
            border-radius: 16px;
            box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
            animation: slideDown 0.3s ease;
        }
        
        .visu-modal-header {
            padding: 20px 24px;
            border-bottom: 1px solid #e5e7eb;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .visu-modal-header h3 {
            margin: 0;
            font-size: 1.25rem;
            font-weight: 600;
            color: #111827;
        }
        
        .visu-modal-close {
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            color: #6b7280;
            transition: color 0.2s;
        }
        
        .visu-modal-close:hover {
            color: #111827;
        }
        
        .visu-modal-body {
            padding: 24px;
        }
        
        .visu-modal-footer {
            padding: 16px 24px;
            border-top: 1px solid #e5e7eb;
            display: flex;
            justify-content: flex-end;
            gap: 12px;
        }
        
        .visu-modal-cancel {
            padding: 8px 16px;
            background: #f3f4f6;
            color: #374151;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            transition: background 0.2s;
        }
        
        .visu-modal-cancel:hover {
            background: #e5e7eb;
        }
        
        .visu-modal-submit {
            padding: 8px 20px;
            background: #f59e0b;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: background 0.2s;
        }
        
        .visu-modal-submit:hover {
            background: #d97706;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideDown {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .visu-message { padding:15px 20px; border-radius:8px; margin-bottom:20px; }
        .visu-message.success { background:#f0fdf4; border:1px solid #86efac; color:#166534; }
        .visu-message.error { background:#fef2f2; border:1px solid #fecaca; color:#991b1b; }
        .visu-children-table { width:100%; border-collapse:collapse; }
        .visu-children-table th, .visu-children-table td { padding:12px; text-align:left; border-bottom:1px solid #e5e7eb; }
        .visu-children-table th { background:#f9fafb; font-weight:600; }
        .password-requirements { font-size:12px; color:#6b7280; margin-top:5px; }
        
        @media (max-width:768px) { 
            .visu-children-table { display:block; overflow-x:auto; }
            .visu-modal-content { margin: 20% auto; width: 95%; }
        }
