.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    padding: 0 10px;
    border-radius: 20px;
    font-weight: 500;
    color: white;
    margin: 4px;
}

.status-started {
    background-color: #17a2b8; /* blue */
}

.status-completed {
    background-color: #28a745; /* green */
}

.status-cancelled {
    background-color: #dc3545; /* red */
}

.status-running {
    background-color: #ffc107; /* yellow/orange */
    color: black;
}

.status-result {
    background-color: #6f42c1; /* purple */
}


/**********************************/

.bg-login{
    background: url("../img/bg-login.svg");
    background-size: cover;

}