style>
        /* Estilos personalizados y paleta de colores de Moyco (inferida del logo) */
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f4f7fa; /* Un gris muy claro para el fondo */
        }
        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
            font-size: 20px;
        }
        
        /* Colores de la marca */
        :root {
            --moyco-dark-blue: #001a41; /* Color principal del logo */
            --moyco-light-gray: #f4f7fa;
            --moyco-text: #333;
        }

        /* Estilos para botones principales */
        .btn-primary {
            background-color: var(--moyco-dark-blue);
            color: white;
            transition: background-color 0.3s ease;
        }
        .btn-primary:hover {
            background-color: #002b6b;
        }
        .btn-primary:disabled, .btn-primary[disabled] {
            background-color: #94a3b8;
            cursor: not-allowed;
        }
        
        /* Estilos para botones secundarios */
        .btn-secondary {
            background-color: #e0e7ff;
            color: var(--moyco-dark-blue);
            transition: background-color 0.3s ease;
        }
        .btn-secondary:hover {
            background-color: #c7d2fe;
        }
        .btn-secondary:disabled, .btn-secondary[disabled] {
            background-color: #e5e7eb;
            color: #9ca3af;
            cursor: not-allowed;
        }

        /* Estilo para las tarjetas de módulos */
        .module-card {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
        }
        .module-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.08);
        }
        
        /* Inputs */
        .form-input {
            border: 1px solid #d1d5db;
            border-radius: 8px;
            padding: 10px 12px;
            transition: border-color 0.2s, box-shadow 0.2s;
            width: 100%;
        }
        .form-input:focus {
            outline: none;
            border-color: var(--moyco-dark-blue);
            box-shadow: 0 0 0 3px rgba(0, 26, 65, 0.1);
        }
        .form-input:disabled {
            background-color: #f3f4f6;
            cursor: not-allowed;
        }
        
        /* Tablas */
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1.5rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            border-radius: 8px;
            overflow: hidden;
        }
        .data-table th, .data-table td {
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #e5e7eb;
        }
        .data-table th {
            background-color: #f9fafb;
            color: #4b5563;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 0.05em;
        }
        .data-table td {
            background-color: white;
            color: #374151;
            font-size: 0.875rem;
        }
        .data-table tr:last-child td {
            border-bottom: none;
        }
        .data-table .form-input {
            padding: 8px 10px;
            text-align: right;
        }
        /* Checkbox de tabla */
        .data-table input[type="checkbox"] {
            @apply h-5 w-5 rounded border-gray-300 text-blue-600 focus:ring-blue-500;
        }

        /* Tabs */
        .tab-button {
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #4b5563;
        }
        .tab-button.active {
            background-color: white;
            color: var(--moyco-dark-blue);
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        }
        .tab-content {
            display: none;
            margin-top: 1.5rem;
        }
        .tab-content.active {
            display: block;
        }
        
        /* Estilos para el Asistente (Wizard) */
        .wizard-page {
            display: none; /* Oculto por defecto */
        }
        .wizard-page.active {
            display: block; /* Visible cuando está activo */
        }
        .wizard-steps {
            display: flex;
            gap: 8px;
            margin-bottom: 1.5rem;
        }
        .wizard-step {
            flex: 1;
            padding: 4px;
            background-color: #e5e7eb; /* Gris por defecto */
            border-radius: 99px;
            text-align: center;
            font-size: 0.875rem;
            font-weight: 600;
            color: #6b7280;
            position: relative;
        }
        .wizard-step.active {
            background-color: #dbeafe; /* Azul claro para activo */
            color: var(--moyco-dark-blue);
        }
        .wizard-step.completed {
            background-color: #1e40af; /* Azul oscuro para completado */
            color: white;
        }

        /* Estilos para Modales */
        .modal-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: none; /* (MODIFICADO) - Oculto por defecto */
            align-items: center;
            justify-content: center;
            z-index: 50;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .modal-backdrop.active {
            display: flex; /* (MODIFICADO) - Se muestra con 'active' */
            opacity: 1;
        }
        .modal-content {
            background-color: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            width: 90%;
            max-width: 500px;
            transform: scale(0.95);
            transition: transform 0.3s ease;
        }
        .modal-backdrop.active .modal-content {
            transform: scale(1);
        }
    </style