body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f5f6fa;
    margin: 0;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
}

/* KPI CARDS */

.kpi-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.kpi-card {
    background: white;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    text-align: center;

    box-shadow: 0px 2px 6px rgba(0,0,0,0.15);
}

.kpi-card h2 {
    font-size: 18px;
    color: #555;
}

.kpi-card p {
    font-size: 28px;
    font-weight: bold;
    margin-top: 10px;
}

/* CHART LAYOUT */

.chart-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.chart-card {
    background: white;
    width: 48%;
    padding: 20px;
    border-radius: 10px;

    box-shadow: 0px 2px 6px rgba(0,0,0,0.15);
}

.chart-card h3 {
    margin-bottom: 15px;
    color: #444;
}
