﻿/*
    psPage.css
*/

body {
    background-color: #f0f0f0;
    margin: 0;
}

/*
    div.PageContent         ;Outer Wrapper of all content other than Ribbon/ButtonBar/ActionPane/Footer
*/
div.PageContent {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: calc(4px + 18px + 4px); /* need to give room for the footer */
    padding-left: 10px;
}

/*  div.PageTitleCaption   ;page title / heading */
h3.PageTitle {
    margin-top: 0;
    margin-bottom: 0;
}

/*  div.PageTitleCaption   ;description of the page */
p.PageTitleCaption {
    font-style: italic;
    margin: 0;
}

a, a:visited, a:hover, a:active {
    color: #0000EE;
}

hr.Split {
    border-top: 3px solid red;
    border-bottom: none;
    margin: 20px 0;
    width: 1024px;
}

td.Drillable {
    cursor: pointer;
}

    td.Drillable:hover {
        color: black;
        background-color: lightpink !important;
    }

/*div.PageHeadAction {*/
    /*z-index: 2000;*/
    /*position: absolute;
    right: 0;
    top: 0;
    width: 210px;
    min-height: 132px;
    background-color: #fff;
    border: 1px solid gray;
    border-radius: 5px 0 0 5px;
    user-select: none;*/ /* BT 2025-07-03: disable drag to select on these items (no need on buttons) */
/*}

    div.PageHeadAction div.ActionHead {
        height: 18px;
        background-color: lightgray;
        border: 1px solid gray;
        padding: 2px;
        font-weight: bold;
    }

        div.PageHeadAction div.ActionHead.Top {
            background: linear-gradient(to bottom, #e6e6e6 0%, #d3d3d3 100%);
            background-color: none;
            border-radius: 5px 0 0 0;
        }

        div.PageHeadAction div.ActionHead.Top img {
            position: absolute;
            top: 2px;
            right: 2px;
            max-width: 16px;
            max-height: 16px;
        }

    div.PageHeadAction a.ActionPaneLink {
        display: block;
        margin: 6px;
    }

    div.PageHeadAction a.ActionPaneLink.Blank {
        color: #555;
        text-decoration: none !important;
        font-style: italic;
        cursor: default;
    }

    div.PageHeadAction a.ActionPaneFavorite {
        display: block;
        margin: 4px;
    }

    div.PageHeadAction div.ActionReports {
        padding: 6px;
    }

    div.PageHeadAction div.ActionHead.Top div.apPinButton {
        width: 16px;
        height: 16px;
        position: absolute;
        top: 1px;
        right: 1px;
        background: url('/Static/Images/Menu/unpinned.gif') no-repeat top left;
        cursor: pointer;
    }

    div.PageHeadAction div.ActionHead.Top .apPinned div.apPinButton {
        background: url('/Static/Images/Menu/pinned.gif') no-repeat top left;
    }*/

#psContentMain.apPinned #psContent {
    margin-right: 211px;
}

div.PageHeadFooter {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 18px;
    width: calc(100% - (100vw - 100%)); /* 100vw includes scrollbar width and 100% does not */
    background-color: #85C1E9;
    padding: 4px;
}

    div.PageHeadFooter span:nth-child(1) {
        position: absolute;
        top: 3px;
        left: 10px;
    }

    div.PageHeadFooter span:nth-child(2) {
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    div.PageHeadFooter span:nth-child(3) {
        position: absolute;
        top: 3px;
        right: 10px;
    }

div.CharLimitWrapper {
    display: inline-block;
}

    div.CharLimitWrapper div {
        margin-top: 5px;
        height: 1em;
        color: gray;
    }

        div.CharLimitWrapper div span:first-child {
            float: left;
            color: red;
        }

        div.CharLimitWrapper div span:last-child {
            float: right;
        }
