/* Following copyright notice is basic 'MIT' License ------------------------

Copyright (c) 2020 David SVGFEGaussianBlurElement, Hidden Valley Plantations

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-------------------------------------------------------------------------- */



th 
    {
        padding-right:5px;
        padding-left:5px;
    }

tr.groupheader
    {
        font-size:18px;
        background-color:rgb(194, 215, 243);
        text-align: left;
        height: 35px;
    }
tr.groupdetail 
    {
        background-color:rgb(226, 233, 245);
        font-family:helvetica;
        display: none;
        padding-top: 5px;
        vertical-align: top;
    }

tr.projectheader
    {
        font-size:16px;
        background-color:rgb(221, 221, 221);
        text-align: center;
        padding-top: 10px;
        height: 25px;
    }
tr.projectdetail 
    {
        background-color:rgb(233, 233, 233);
        text-align: left;
        vertical-align: top;
        font-family:helvetica;
        display: none;
        padding-top: 5px;
    }

td 
    {
        padding-right:5px;
        padding-left:5px;
    }

td.filler
    {
        background-color:whitesmoke;
    }
td.clicker
    {
        cursor:pointer;
        text-align: center;
    }
td.clicker :after {content:"[+]"}
td.clicker.expand :after {content:"[-]"}

th.filter
    {
        cursor:pointer;
    }
th.filter.active
    {
        color: maroon;
    }
.messagepop 
    {
    background-color:#FFFFFF;
    border:1px solid #999999;
    cursor:default;
    display:none;
    margin-top: 2px;
    position:absolute;
    text-align:left;
    z-index:50;
    padding: 10px 10px 10px;
    }
      
.messagepop p, .messagepop.div 
    {
    border-bottom: 1px solid #EFEFEF;
    margin: 4px 0;
    padding-bottom: 4px;
    }    

.ptablediv 
    {
        background-color: whitesmoke;
        font-family: Arial, Helvetica, sans-serif;
        margin-left: 16px;
        height: 120px;
        max-width: 900px;
        max-height: 400px;
        overflow-x:auto; 
        overflow-y:auto;
        border:0
    }

table.ptablediv
    {
        border:2px solid steelblue;

    }
    
/* Charts */
.chartarea
    {
        font-size: smaller;
        margin-left: 0px;
        width: 90%;
        max-width: 480px;
        border: 1px solid #333;
        background-color: whitesmoke;
    }

.chartbar
    {
        background:green; 
        height:25px;        
        color: whitesmoke;
        padding: 2px 5px 2px 0px;
        box-sizing: border-box;
        text-align: right;
        margin-bottom: 5px;
    }

.chartbar.nodata
    {
        background:whitesmoke; 
        width: 0%;
        height:25px;        
        color: gray;
        padding: 2px 2px 2px 2px;
        box-sizing: border-box;
        text-align: left;

    }

.vidlink 
    {
        position: relative;
        display: inline-block;
    }
.vidlink:before 
    {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 10;
        opacity: .6;
        
        background: transparent url("./play-button_200.png") center center no-repeat;
    }
.vidlink:hover:before 
    {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 10;
        opacity: 1.0;
        background: transparent url("./play-button_200.png") center center no-repeat;
    }

    .tooltip {
        position: relative;
        display: inline-block;
        border-bottom: 2px dotted blue; /* If you want dots under the hoverable text */
      }
      
      /* Tooltip text */
      .tooltip .tooltiptext {
        visibility: hidden;
        width: 240px;
        background-color: rgb(180, 198, 248);
        color: rgb(0, 0, 0);
        text-align: center;
        padding: 10px 10px;
        border-radius: 6px;
       
        /* Position the tooltip text - see examples below! */
        position: absolute;
        z-index: 1;
      }
      
      /* Show the tooltip text when you mouse over the tooltip container */
      .tooltip:hover .tooltiptext {
        visibility: visible;
      }