.node rect.dept-chart__node-rect {
    fill: var(--people-color-white);
    stroke: var(--people-color-gray-medium);
    stroke-width: 1px;
}

.node.group rect.dept-chart__node-rect {
    fill: var(--people-bg-gray-whiteish);
    stroke: var(--people-color-orange);
}

.node text.dept-chart__node-name {
    fill: var(--people-text-color);
    font-size: var(--people-font-size-s) !important;
    font-weight: bold;
}

.node.group text[data-width] {
    fill: var(--people-text-color) !important;
    font-weight: bold;
    font-size: var(--people-font-size-md) !important;
}

.node text.dept-chart__node-subname {
    fill: var(--people-text-color);
    font-size: var(--people-font-size-s);
}

.node.group text {
    fill: var(--people-text-color) !important;
}

.dept-chart__link-path {
    stroke: var(--people-color-gray-medium);
}

.dept-chart__expand-circle {
    fill: var(--people-color-white);
    stroke: var(--people-color-gray-medium);
    stroke-width: 1px;
}

.dept-chart__expand-arrow {
    stroke: var(--people-color-gray-medium);
    stroke-width: 1.5px;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.dept-chart__icon-favorite {
    cursor: pointer;
}

.dept-chart__icon-favorite path {
    fill: var(--people-border-gray);
}

.dept-chart__group-title {
    font-size: var(--people-font-size-xxl);
    fill: var(--people-text-color);
}

.dept-chart__node-img,
.dept-chart__node-name {
    cursor: pointer !important;
}

.dept-chart__node-name:hover {
    fill: var(--people-color-orange) !important;
}

.dept-chart__container {
    position: relative;
    width: 100%;
    height: 100%;
}

.dept-chart__zoom-controls {
    position: absolute;
    top: 0px;
    right: 10px;
    background: var(--people-color-white);
    border: 1px solid var(--people-border-gray);
    border-radius: 8px;
    box-shadow: 0 3px 6px var(--people-shadow-hint);
    display: flex;
    align-items: center;
    z-index: 1000;
}

.dept-chart__zoom-btn {
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    font-size: var(--people-font-size-sm);
    color: var(--people-text-gray-slate);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: var(--people-font-weight-bold);
    outline: none;
    line-height: 1;
}

.dept-chart__zoom-btn:hover {
    background-color: var(--people-bg-gray-light);
}

.dept-chart__zoom-btn--in {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.dept-chart__zoom-btn--out {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.dept-chart__zoom-divider {
    width: 1px;
    height: 20px;
    background-color: var(--people-border-gray);
}
