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

.project-chart-card {
    background: var(--nwc-ui-surface-muted);
    border: 1px solid var(--nwc-ui-border);
    border-radius: 18px;
    padding: 1em;
    display: flex;
    flex-direction: column;
}

@scope (.project-chart-card) {
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.25em;
    }

    .chart-heading {
        margin: 0;
    }

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

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

}
