    /* Estilos Generales y Estructura (Heredados del Baseline) */
    .mknews-calendario-hero { 
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border: 1px solid #eaeaea;
        border-radius: 0.5rem; 
    }
    
    .mknews-grid-card {
        border-radius: 0.25rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid #e0e0e0;
    }
    .mknews-grid-card:hover { 
        transform: translateY(-4px); 
        box-shadow: 0 10px 20px rgba(0,0,0,0.06) !important; 
        border-color: #d0d0d0;
    }
    .mknews-date-badge {
        font-weight: 700;
        letter-spacing: 0.5px;
        border-radius: 2px !important; 
    }
    
    /* Adaptar botones genric-btn al grid */
    .mknews-btn-wrapper {
        margin: 0;
        text-align: center;
    }
    .mknews-btn-wrapper a {
        display: inline-block;
        width: 100%;
        box-sizing: border-box;
    }

    /* Estilos específicos para el simulador */
    .mknews-input-group {
        text-align: left;
        margin-bottom: 1.5rem;
    }
    .mknews-input-group label {
        font-weight: 600;
        color: #333;
        margin-bottom: 0.5rem;
        display: block;
    }
    .mknews-form-control {
        width: 100%;
        height: 38px;
        padding: 0rem 1rem;
        border: 1px solid #ccc;
        border-radius: 0.25rem;
        background-color: #fff;
        transition: border-color 0.2s;
    }
    .mknews-form-control:focus {
        border-color: #e60000;
        outline: none;
    }
    
    /* Icono de ayuda (Tooltip) */
    .mknews-help-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 18px;
        height: 18px;
        background-color: #6c757d;
        color: #fff;
        border-radius: 50%;
        font-size: 12px;
        font-weight: bold;
        margin-left: 6px;
        cursor: help;
        vertical-align: middle;
    }

    /* Estilos del Checkbox de IGV */
    .mknews-checkbox-group {
        display: flex;
        align-items: center;
        height: 38px;
        margin-top: 1.8rem;
    }
    .mknews-checkbox-group input {
        width: 20px;
        height: 20px;
        margin-right: 10px;
        cursor: pointer;
    }
    .mknews-checkbox-group label {
        margin-bottom: 0;
        cursor: pointer;
        display: inline-block;
    }

    .mknews-result-box {
        background-color: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 0.5rem;
        padding: 1.5rem;
        margin-bottom: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    }
    .mknews-result-value {
        font-size: 2rem;
        font-weight: 800;
        color: #111;
        line-height: 1.2;
    }
    .mknews-result-label {
        color: #666;
        font-size: 0.9rem;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 0.5px;
    }
    
    /* Caja de Análisis Recomendado */
    .mknews-analisis-box {
        background-color: #fff;
        border-left: 4px solid #0d6efd;
        border-radius: 0.375rem;
        padding: 1.25rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.04);
        text-align: left;
        font-size: 0.95rem;
        line-height: 1.5;
        opacity: 0;
        transition: opacity 0.5s ease-in;
    }