﻿.hierarchy-level-container {
    width: 100%;
    display: flex;
}

.hierarchy-item {
    display: flex;
    flex-wrap: wrap;
}

.hierarchy-item-card {
    width: calc(100% - 10px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 5px;
    padding-right: 5px;
    box-shadow: 1px 1px 5px -1px;
    padding-top: 6px;
    padding-bottom: 6px;
    cursor: pointer;
}

.hierarchy-item-card-edge {
    width: calc(100% - 10px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 5px;
    padding-right: 5px;
}

.hierarchy-item-text {
    text-align: center;
}

.hierarchy-vertical-line {
    background-color: darkgrey;
    width: 3px;
    height: 2em;
}

.selected-node {
    background-color: #07A7D3;
    color: white;
    font-weight: bold;
}