.kanban-container {
    display:flex;
    gap:15px;
}

.kanban-column {
    border-radius:10px;

    min-height:50vh;
}

.kanban-list {
    min-height:50vh;
}

.tarefa {
    background: #f4f6f9;
    padding:12px;
    margin-bottom:10px;
    border-radius:5px;
    cursor:grab;
    box-shadow:0 2px 5px rgba(0,0,0,.1);
    border-width: 0px 0px 0px 3px;
    border-style: none none none solid;
}
#pendente .tarefa {
    border-color: #fab63f;
}

#andamento .tarefa {
    border-color: #328dff;
}

#concluido .tarefa {
    border-color: #28a745;
}

#cancelado .tarefa {
    border-color: #383d41;
}
