.list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.list__item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge {
    width: 14px;
    height: 14px;
    border-radius: 100%;
}

.badge__green {
    background-color: green;
}

.badge__orange {
    background-color: orange;
}

.badge__red {
    background-color: red;
}
