.chip {
    display: inline-flex; 
    align-items: center;  
    justify-content: center; 
    padding: 3px 18px;
    border-radius: 20px;
    text-align: center;
    font-size: 12px;
    height: 24px; 
    line-height: normal; 
}


.chip-submitted {
    background-color: rgba(27, 65, 162, 0.1);
    color: #1B41A2;
}

.chip-success {
    background-color: rgba(27, 162, 57, 0.1);
    color: #1BA239;
}

.chip-skip {
    background-color: rgba(222, 26, 229, 0.1);
    color: rgba(222, 26, 229, 1);
}

.chip-warning {
    background-color: rgba(231, 112, 21, 0.1);
    color: rgba(231, 112, 21, 1);
}

.chip-danger {
    background-color: rgba(255, 0, 0, 0.1);
    color: rgba(255, 0, 0, 1);
}