body {
    font-family: 'Noto Sans',sans-serif;
}

.tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px;
    background: white;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    font-size: 14px;
    color: #374151;
    transition: all .2s ease;
}

    .tile i {
        font-size: 18px;
        color: #535C84;
    }

    .tile:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 18px rgba(0,0,0,.08);
        border-color: #535C84;
    }

.linechart canvas {
    max-height: 260px;
    width: 100% ;
}

.barchart canvas {
    width: 100%;
    height: 90%;
}

.barchartSmall canvas {
    width: 100%;
    height: 90%;
}