.card {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #ff00cc, #3333ff);
    border-radius: 20px;
}
.card__stats_other,
.card__stats_main {
    display: flex;
    flex-direction: column;
}
.card__stats_other progress,
.card__stats_main progress {
    width: 100%;
    color: #ff00cc;
}

.card__actions_other,
.card__actions_main {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    margin-top: 10px;
}
.card__actions_other button,
.card__actions_main button {
    width: 100%;
    padding: 4px;
    border-radius: 10px;
    background: linear-gradient(45deg, #ff00cc, #3333ff);
}
