    /* Estilos Generales y Estructura (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; 
    }

    /* Estilos del Formulario */
    .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;
        font-size:12px;
        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: #0d6efd;
        outline: none;
    }

    /* Reducción de 2 puntos en los Selects */
    select.mknews-form-control {
        font-size: 14px !important;
    }
    
    .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 de Resultados */
    .mknews-result-box {
        background-color: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 0.5rem;
        padding: 1.25rem;
        margin-bottom: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.02);
        height: 100%;
    }
    .mknews-result-value {
        font-size: 1.8rem;
        font-weight: 800;
        color: #111;
        line-height: 1.2;
    }
    .mknews-result-label {
        color: #666;
        font-size: 0.85rem;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 0.5px;
    }
    
    /* Caja de Análisis y Gráfico */
    .mknews-analisis-box {
        background-color: #fff;
        border-left: 4px solid #0d6efd;
        border-radius: 0.375rem;
        padding: 1.5rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.04);
        text-align: left;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .mknews-yape-box {
        background-color: #e8f5e9;
        border: 1px solid #c8e6c9;
        border-left: 4px solid #2e7d32;
        border-radius: 0.375rem;
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .chart-container {
        position: relative;
        height: 220px;
        width: 100%;
        margin: 0 auto;
    }
