
    /*PT4 impact dashboard
    ===========================*/
    .pt4-big-data-dash {
        background-color: #ffffff;
        padding: 0px;
    }

    .pt4-big-data-dash-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .pt4-big-data-dash-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 30px;
        gap: 20px;
    }

    .pt4-big-data-dash-title {
        text-align: left;
        font-size: 35px;
        margin-bottom: 30px;
    }

    .pt4-big-data-dash-download-btn {
        background-color: #4CAF50;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: background-color 0.3s;
    }

    .pt4-big-data-dash-download-btn:hover {
        background-color: #45a049;
    }

    .pt4-big-data-dash-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-bottom: 30px;
    }

    .pt4-big-data-dash-card {
        background: white;
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        position: relative;
    }

    /* Card border colors */
    .pt4-impact-education { border-top: 4px solid #4CAF50; }
    .pt4-impact-health { border-top: 4px solid #2196F3; }
    .pt4-impact-protection { border-top: 4px solid #9C27B0; }
    .pt4-impact-vocational { border-top: 4px solid #FF9800; }
    .pt4-impact-water { border-top: 4px solid #E91E63; }
    .pt4-impact-community { border-top: 4px solid #673AB7; }
    .pt4-impact-women { border-top: 4px solid #00BCD4; }
    .pt4-impact-youth { border-top: 4px solid #ff2600; }

    .pt4-big-data-dash-card-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .pt4-big-data-dash-card-title i {
        font-size: 1.2em;
    }

    /* Icon colors */
    .pt4-impact-education i { color: #4CAF50; }
    .pt4-impact-health i { color: #2196F3; }
    .pt4-impact-protection i { color: #9C27B0; }
    .pt4-impact-vocational i { color: #FF9800; }
    .pt4-impact-water i { color: #E91E63; }
    .pt4-impact-community i { color: #673AB7; }
    .pt4-impact-women i { color: #00BCD4; }
    .pt4-impact-youth i { color: #ff2600; }

    .pt4-big-data-dash-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        text-align: center;
        color: #000000;
    }

    .pt4-big-data-dash-stat-box {
        padding: 10px;
    }

    .pt4-big-data-dash-stat-label {
        font-size: 1em;
        color: #000000;
        margin-bottom: 5px;
    }

    .pt4-big-data-dash-stat-value {
        font-size: 1.4em;
        font-weight: bold;
    }

    .pt4-big-data-dash-total {
        grid-column: span 2;
        border-top: 1px solid #eee;
        padding-top: 15px;
        margin-top: 10px;
    }

    /* Customizer edit buttons */
    .pt4-customizer-edit {
        position: absolute;
        top: 5px;
        right: 5px;
        background: rgba(0,0,0,0.7);
        color: white;
        border: none;
        border-radius: 3px;
        padding: 2px 5px;
        font-size: 12px;
        cursor: pointer;
        display: none;
        z-index: 100;
    }

    .pt4-big-data-dash-card:hover .pt4-customizer-edit {
        display: block;
    }

    @media (max-width: 768px) {
        .pt4-big-data-dash-grid {
            grid-template-columns: 1fr;
        }

        .pt4-big-data-dash-header {
            flex-direction: column;
            align-items: stretch;
        }

        .pt4-big-data-dash-download-btn {
            align-self: flex-end;
        }
    }