﻿#planning-menu {
    float: right;
    border-width: 0;
    background: none;
    vertical-align: bottom;
    color: #FFFFFF;
    font-weight: 700;
}

    #planning-menu li:hover {
        background-color: #003F54;
        border: 1px solid #003F54;
    }

#planning-menu-wrapper {
    height: 35px;
    position: absolute;
    top: 1px;
    left: 170px;
    width: calc(100% - 570px);
    overflow: hidden;
}

#target-summary-view {
    width: 100%;
    height: 100%;
}

.target-summary-weeks-wrapper {
    height: 100%;
    display: flex;
    flex-direction: row;
    flex: 1;
    justify-content: space-evenly;
}

.target-summary-grid-wrapper {
    height: calc(100% - 90px);
    overflow-y: scroll;
}

.target-summary-grid {
}

.target-summary-row {
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 0 0 20px;
}

.target-summary-kpi-name {
    width: 160px;
}

.target-summary-columns {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.target-summary-item {
    width: 100%;
    border-left: 1px solid lightgray;
    border-bottom: 1px solid lightgray;
}

.target-summary-week {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #A4A6A7;
}

    .target-summary-week img {
        margin: 0 5px;
        height: 24px;
        cursor: pointer;
    }

.target-summary-week-label {
    color: black;
    flex: 1;
    text-align: center;
}

.target-summary-header {
    height: 50px;
    width: calc(100% - 16px);
    display: flex;
    flex-direction: row;
}

.target-summary-kpi-header {
    width: 180px;
    display: flex;
    align-items: center;
    background-color: #A4A6A7;
    color: white;
    padding: 0 0 0 20px;
}

    .target-summary-kpi-header label {
        color: black;
    }

.target-summary-legend {
    height: 30px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    padding: 0 10px;
}

.target-summary-legend-item {
    display: flex;
    gap: 5px;
    align-items: center;
}

    .target-summary-legend-item label {
    }

.target-summary-legend-marker {
    height: 10px;
    width: 10px;
    border-radius: 5px;
}

    .target-summary-legend-marker.green {
        background-color: #45B369;
    }

    .target-summary-legend-marker.orange {
        background-color: #ffda81;
    }

    .target-summary-legend-marker.white {
        border: 1px solid #A4A6A7;
        background-color: white;
    }

#planning {
    height: 100%;
    width: calc(100% - 5px);
    min-width: 600px;
}

.target-import-files {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
}
