/* Força largura e altura total */
#kanban-board {
    display: flex;
    flex-wrap: nowrap;
    width: 100vw;         /* Largura total da viewport */
    height: calc(100vh - 80px); /* Altura total menos o cabeçalho */
    padding: 10px;
    gap: 10px;
    overflow-x: auto;
    background-color: #f8f9fa; /* Fundo leve */
}

.kanban-col {
    min-width: 300px; /* Largura mínima de cada coluna */
    flex: 1;          /* Distribui igualmente */
    height: 100%;
}

.kanban-card {
    padding: 10px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}