.student-progress-min {
    min-width: unset;
    background-color: var(--success);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 1;
}

.student-progress-min-full {
    min-width: unset;
    background-color: #b0f2bd;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}


.student-progress-avg {
    min-width: unset;
    background-color: var(--primary);
    border-radius: 0;
    z-index: 1;
}

.student-progress-avg-full {
    min-width: unset;
    background-color: #95afe5;
    border-radius: 0;
}

.student-progress-max {
    min-width: unset;
    background-color: var(--danger);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    z-index: 1;
}

.student-progress-max-full {
    min-width: unset;
    background-color: #f9b8b8;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.student-progress-text {
    min-width: unset;
    color: white;
    position: absolute;
    white-space: nowrap;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    z-index: 2;
}