/*donut cards*/

.donutcard-container {
    transform: translateY(-10%);
    /* Ensure it takes the full width of its parent */
}

.lifeprint-donut-card {
    border: 0;
    /* Removes the border, equivalent to 'border-0' */
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
    /* Adds shadow, equivalent to 'shadow' */
    padding: 1rem;
    /* Padding on all sides, equivalent to 'p-3' */
    /* Margin bottom, equivalent to 'mb-5' */
    background-color: white;
    /* Background color white, equivalent to 'bg-white' */
    display: flex;
}

.lifeprint-donut-card .row {
    width: 100%;
    /* Make the row take up 100% width */
}

.donutcard-title-container {
    display: flex;
    /* Vertically center the content */
    justify-content: space-between;
    align-items: center;
    /* Space out the child elements */
    width: 100%;
    /* Ensure it takes the full width of its parent */
}

.donut-chart {
    width: 100%;
    max-height: 200px;
    margin: 0;
    margin-bottom: 4%;
    margin-top: 4%;
}

.domain-donut-chart {
    width: 100%;
    max-height: 200px;
    margin: 0;
    margin-top: 2%;
}