body {
    font-family: Arial, sans-serif;
    background-color: #8bcae8;
    color: #333;
    text-align: center;
}

h1 {
    margin-top: 20px;
    background-color: rgb(238, 131, 131);
    border-radius: 10px;
}

.metrics {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.metric {
    background-color: #124E2B;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    width: 30%;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

/*canvas {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}*/
canvas {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;   /* Set the max width of each chart */
    max-height: 400px;  /* Set the max height of each chart */
    width: 100%;        /* Ensure responsive behavior */
    height: 100%;
}

