
.status {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    padding: 0px 4px;
    border-radius: 4px;
    color: white;

    &.status-green {
        background-color: #2ecc71;
    }
    &.status-yellow {
        background-color: #f1c40f;
    }
    &.status-orange {
        background-color: #e67e22;
    }
    &.status-red {
        background-color: #e74c3c;
    }
    &.status-dark-red {
        background-color: #c81710;
    }
}

.modal .status {
    display: inline-flex;
    width: 24px;
    height: 24px;
    margin-right: .25rem;
}