.task-status {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 5px;
    width: 33.333%;
}

.task-pending {
    background-color: red;
}

.task-in-progress {
    background-color: yellow;
}

.task-done {
    background-color: green;
}

.status-form {
    display: flex;
    flex-direction: row;
    width: 40%;
}

.status-form label {
    font-size: 10px;
}

.single-task {
    width: 500px;
    display: flex;
    justify-content: start;
    align-items: center;
    margin: 5px;
}