.progress-statistics {
    display: flex;
    gap: 10px;
}
.progress-statistics > div {
    display: flex;
    flex-direction: column;
    background-color: var(--light-neutral);
    border-radius: 16px;
    width: 120px;
    padding: 15px;
    justify-content: space-between;
}
.progress-statistics > div:first-child {
    flex-grow: 1;
    flex-direction: row;
    gap: 25px;
    padding-left: 25px;
    padding-right: 25px;
}
.progress-statistics > div:last-child {
    background-color: var(--apple-green);
}

#progress-graph {
    width: 78px;
    aspect-ratio: 1;
}
.modal #progress-graph {
    width: 100%;
    height: 100%;
}
.conversation-status-statistics {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.conversation-status-statistics > div {
    flex: 1 1 auto;
    display: flex;
    gap: 10px;
    align-items: center;
}
.conversation-status-statistics > div > :first-child {
    width: 10px;
    height: 10px;
    border-radius: 100%;
}
.conversation-status-statistics > div > :nth-child(2) {
    flex: 1 1 auto;
}