    
    .empleosnet-modal .modal-content {
        border-radius: 15px;
        overflow: hidden;
        --primary: #2563eb;
        --primary-dark: #1d4ed8;
        --accent: #f59e0b;
        --text: #334155;
    }

    .empleosnet-modal .modal-header {
        border-bottom: none;
        padding-bottom: 0;
    }

    .empleosnet-modal .modal-body {
        padding: 2rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: var(--text);
    }

    .empleosnet-modal .feature-card {
        transition: transform 0.3s ease;
        height: 100%;
        border: none !important;
    }

    .empleosnet-modal .feature-card:hover {
        transform: translateY(-5px);
    }

    .empleosnet-modal .check-icon {
        color: var(--accent);
        font-weight: bold;
        margin-right: 0.5rem;
    }

    .empleosnet-modal .btn-accent {
        background-color: var(--accent);
        color: white;
        transition: background-color 0.3s;
        border: none;
    }

    .empleosnet-modal .btn-accent:hover {
        background-color: #e69009;
        color: white;
    }

    .empleosnet-modal .bg-primary-gradient {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
        color: white;
    }

    .empleosnet-modal .text-primary-custom {
        color: var(--primary) !important;
    }

    .empleosnet-modal h1,
    .empleosnet-modal h2,
    .empleosnet-modal h3 {
        color: var(--primary);
    }

    .empleosnet-modal .lead {
        font-size: 1.25rem;
        font-weight: 300;
    }

    /* Estilos específicos para el plugin */
    .empleosnet-modal .integration-steps {
        list-style-type: none;
        padding-left: 0;
    }

    .empleosnet-modal .integration-steps li {
        padding: 0.5rem 0;
        display: flex;
        align-items: flex-start;
    }

    .empleosnet-modal .step-number {
        background-color: var(--primary);
        color: white;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: 0.75rem;
        flex-shrink: 0;
        font-size: 0.75rem;
        font-weight: bold;
    }

    .empleosnet-modal .shortcode-example {
        background-color: #f8f9fa;
        padding: 1rem;
        border-radius: 4px;
        font-family: monospace;
        margin: 1rem 0;
    }