.minimalDashboardLi::before {
    content: '•'; /* Add a custom bullet */
    color: red; /* Change the color of the bullet */
    font-size: 20px; /* Adjust the size of the bullet if necessary */
    margin-right: 10px; /* Add some spacing between the bullet and the text */
}

.minimalDashboardUl {
    list-style-type: none; /* Remove default bullet */
    display: flex;
    justify-content: space-between !important;
    align-items: start !important;
    width: 100%;
}

.dotRed {
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: #f94449;
    align-self: center;
    margin-right: 1rem;
}

.dotYellow {
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: #FFDB58;
    align-self: center;
    margin-right: 1rem;
}

.dotGreen {
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: #77BF42;
    align-self: center;
    margin-right: 1rem;
}

.dotBlue {
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: blue;
    align-self: center;
    margin-right: 1rem;
}

.dotBlack {
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: black;
    align-self: center;
    margin-right: 1rem;
}

.dotGrey {
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: grey;
    align-self: center;
    margin-right: 1rem;
}