﻿.view-kanban {
    display: flex;
    flex-direction: inherit;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
}

.kanban-header {
    height: 42px;
    display: flex;
    align-items: center;
}

.kanban-container {
    display: flex;
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    overflow-x: auto;
    scrollbar-color: #b6b6b6 #f5f5f5ee;
    scrollbar-width: thin;
}

.kanban-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    border: 1px solid #d1d1d1;
    margin: 5px;
    min-width: 180px;
    height: calc(100% - 10px);
    min-height: calc(100% - 10px);
    max-height: calc(100% - 10px);
    background-color: #f7f7f7f2;
    overflow: hidden;
}

.kanban-column-header {
    font-size: 14px;
    height: 32px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    user-select: none;
}

.kanban-column-content {
    flex: 1;
    padding: 0px;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-color: #b6b6b6 #f5f5f5ee;
    scrollbar-width: thin;
    padding: 4px;
}