/*
(c) 2024 Plan-J Solutions inc, PlanJCore browser Client : coreUI
2024-02-17 PlanJCore coreUI CSS v0.2.0
*/
/* Global Page settings */
body {
    font-family: "Arial";
    font-size: 14pt;
    display: flex;
    flex-direction: column;
    /*min-height: 100vh;*/
}
/*a {
    color: darkgreen;
}*/
#pjHead {
    background-color: #e0e0e8;
    width: 100%;
    text-align: center;
    padding: 5px;
}
#pjBanner {
    background-color: #be1e2d;
    color: white;
    width: 100%;
    text-align: center;
    padding: 1px;
}
#pjFoot {
    position: absolute;
    color: white;
    background-color: #be1e2d;
    width: 100%;
    padding: 2px;
    text-align: center;
}
#pjMenu,#pjStat,#pjMain {
    overflow: auto;
    position: absolute;
    padding: 0px;
}
#pjMenu {
    background-color: #e0e0e8;
    /*border: 0.5px solid #be1e2d;*/
    padding: 3px;
}
#pjStat {
    padding: 3px;
    background-color: #f8f8ff;
    border: 0px solid darkred;
}
#pjMain {
    padding: 8px;
    background-color: #ffffff;
    border: 0px solid darkblue;
}
/* Management Block with Notifications, Logon, Channel, Font Size in Header Block */
#pjManageBlock {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: absolute;
    margin: 8px;
}
/* Menu and Status Resizing elements */
.pjMover {
    text-align: center;
    position: absolute;
    padding: 0px;
}
/*
Information views, with Title and variable contents
*/
#pjInfoView {
    display: none;
    overflow: hidden;
    position: absolute;
/*    left: 35%;
    top: 10%;
    width: 30%;*/
    padding: 0px;
    background-color: #ffffff;
    border-radius: 10px;
    border: 2px solid darkblue;
    z-index: 1;
}
#pjInfoTBar {
    position: relative;
    top: 0;
    left: 0;
    background-color: lightblue;
    width: 99%;
    padding: 5px; 
    font-size: 1.25em;
    font-weight: bold;
}
#pjInfoCt {
    overflow: auto;
    padding: 5px;
}
/*
Modal Dialog Section
*/
#pjModalDiv {
    display: block;
    overflow: auto;
    position: absolute;
    left: 35%;
    top: 10%;
    width: 30%;
    height: 30%;
    padding: 5px;
    background-color: #ffffff;
    border-radius: 10px;
    border: 2px solid darkred;
}
/* Modal Catch Clicks, modify transparency if needed */
#pjModalBack {
    background-color: rgba(0,0,0,0.2);
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
/* Modal Dialog Title Bar settings */
#pjModalTBar {
    background-color: lightred;
    padding: 5px; 
    font-size: 1.25em;
    font-weight: bold;
    position: relative;
    top: 0;
    left: 0;
    width: 99%;
}
/* Pop up Menu */
#pjMenuDiv {
    display: none;
    position: absolute;
    background-color: #ffffff;
    font-size: 0.8em;
    border-radius: 3px;
    padding: 4px;
    border: 1px solid black;
}

