.dashboard {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    grid-auto-rows: calc(50% - 1em);
    gap: 1em;
}

.chart-card {
    border: 2px solid var(--light-gray-border);
    border-radius: 0.5em;
    padding: 0.5em;
    display: flex;
    flex-direction: column;
}

@scope (.chart-card) {

    .header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.25em;
        padding-left: 0.5em;
    }

    .add-btn {
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .add-btn > .gwt-Image {
        display: none;
    }

    .add-btn > .gwt-Label {
        font-size: 20em;
        color: var(--bs-primary);
    }

    .chart-single-value {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

}
