.kanban-board {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    height: 75vh;
    padding: 15px;
}

.kanban-column {
    background-color: #e2e6e9;
    border-radius: 8px;
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.kanban-column-header {
    background-color: #007bff;
    color: #fff;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border-radius: 8px 8px 0 0;
}

.kanban-column-content {
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
}

.kanban-item {
    border: 2px solid transparent;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 10px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

/* Adiciona um efeito ao passar o mouse */
.kanban-item:hover {
    transform: scale(1.03);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.kanban-item .item-header {
    font-weight: bold;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px dotted #ccc;
}

.kanban-item .item-body {
    font-size: 12px;
    color: #555;
}

.kanban-item .item-body p {
    margin-bottom: 0px;
}

.kanban-item .item-footer {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}