timesheet-tree-node-cell {
    /* This is to make sure that cell is above div, which simulates background color */
    z-index: 2;
}

.timesheetTreeNodeCellContainer {
    height: 100%;
}

    .timesheetTreeNodeCellContainer.isSelected {
        background-color: #D9EEFE !important;
    }

    .timesheetTreeNodeCellContainer .updateIsNotFinishedBackground {
        height: 100%;
        background: #EC4A43;
        opacity: 0.2;
        top: 0;
        position: absolute;
    }

    .timesheetTreeNodeCellContainer .timesheetTreeNodeCell {
        height: 100%;
    }

    .timesheetTreeNodeCellContainer .timesheetTreeNodeCell.updateIsNotFinished {
        position: relative;
    }

        .timesheetTreeNodeCellContainer .timesheetTreeNodeCell .updateIsNotFinishedContainer {
            text-align: center;
            display: none;
            cursor: pointer;
        }

            .timesheetTreeNodeCellContainer .timesheetTreeNodeCell .updateIsNotFinishedContainer img {
                position: absolute;
                /*center the arrow*/
                margin: auto;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
            }

            .timesheetTreeNodeCellContainer .timesheetTreeNodeCell.updateIsNotFinished:hover .updateIsNotFinishedContainer {
                display: block;
            }

            .timesheetTreeNodeCellContainer .timesheetTreeNodeCell.updateIsNotFinished:hover .workingHours {
                display: none;
            }

        .timesheetTreeNodeCellContainer .timesheetTreeNodeCell .workingHours {
            padding-top: 4px;
            text-align: right;
            font-family: GlowRegular;
            font-size: 14px;
            color: #4a4a4a;
            align-self: flex-end;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            padding-right: 10px;
            padding-left: 10px;
        }

        .timesheetTreeNodeCellContainer .timesheetTreeNodeCell .workingHours.updateIsNotFinished {
            color: #EC4A43;
        }

        .timesheetTreeNodeCellContainer .timesheetTreeNodeCell .statusContainer {
            display: flex;
            height: 100%;
            align-items: center;
            justify-content: center;
        }

        .timesheetTreeNodeCellContainer .timesheetTreeNodeCell .statusContainer .changeStatusImgContainer {
            display: flex;
            height: 100%;
            align-items: center;
            justify-content: center;
        }

            .timesheetTreeNodeCellContainer .timesheetTreeNodeCell .statusContainer img.changeable {
                cursor: pointer;
            }

            .timesheetTreeNodeCellContainer.isDeleted .timesheetTreeNodeCell:not(.statusCell) {
                opacity: 0.4;
            }

        .timesheetTreeNodeCellContainer .timesheetTreeNodeCell.difference .workingHours.negative {
            color: #EC4A43;
        }

        .timesheetTreeNodeCellContainer .timesheetTreeNodeCell.difference .workingHours.positive {
            color: #6EBC2C;
        }

        .timesheetTreeNodeCellContainer .timesheetTreeNodeCell.difference .workingHours .arrow {
            display: none;
        }

        .timesheetTreeNodeCellContainer .timesheetTreeNodeCell.difference .workingHours.negative .arrow.red {
            background: url("../../../../images/shared/redArrowUp.png") no-repeat;
            height: 7px;
            width: 5px;
            margin-left: 4px;
            display: inline-block;
         }

        .timesheetTreeNodeCellContainer .timesheetTreeNodeCell.difference .workingHours.positive .arrow.green {
            background: url("../../../../images/shared/greenArrowDown.png") no-repeat;
            height: 7px;
            width: 5px;
            margin-left: 4px;
            display: inline-block;
        }

        .timesheetTreeNodeCellContainer .timesheetTreeNodeCell.totalBaseline {
            display: flex;
            justify-content: flex-end;
        }

        .timesheetTreeNodeCellContainer .timesheetTreeNodeCell.totalBaseline .workingHours {
            align-self: auto;
        }

        .timesheetTreeNodeCellContainer .timesheetTreeNodeCell.totalBaseline.editable:hover .actionButtons {
            display: flex;
            padding-right: 10px;
        }

        .timesheetTreeNodeCellContainer .timesheetTreeNodeCell.totalBaseline.editable:hover .workingHours {
            display: none;
        }

            .timesheetTreeNodeCellContainer .timesheetTreeNodeCell .actionButtons {
                display: none;
                align-items: center;
            }

                .timesheetTreeNodeCellContainer .timesheetTreeNodeCell .actionButtons .refreshButton {
                    cursor: pointer;
                    margin-right: 7px;
                }

                .timesheetTreeNodeCellContainer .timesheetTreeNodeCell .actionButtons .resetButton {
                    cursor: pointer;
                    margin-left: 7px;
                }