/******************************************************\
* MAIN                                                 *
\******************************************************/

body {
	font-size:1em;
	font-family: "Verdana", "Geneva", sans-serif;
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: #F5F4D8;
}

input {
    font-size: inherit;
    color: inherit;
    text-align: left;
    outline: none;
    cursor: text;
}

div.content {
    display:none;
}

.my-tooltip-styling {
    max-width: 600px;
}

td.omschrijving {
    min-width: 400px;
}

td.twobutton {
    width: 50px;
    padding: 0px;
    align: center;
}

/******************************************************\
* GRID                                                 *
\******************************************************/

.item1 {
        grid-area: header;
        padding-left: 20px;
        padding-top: 10px;
        border-bottom: solid 2px grey;
}

.item2 {
        grid-area: menubar;
}

.item3 {
        grid-area: content;
        padding: 10px;
}

.item4 {
        grid-area: footer;
        border-top: solid 2px grey;
        padding-left: 20px;
}

.container {
    display: grid;
    grid-template-columns: 150px auto;
    grid-template-rows: 50px auto 50px;
    grid-template-areas:
        "header header"
        "menubar content"
        "footer footer";
    grid-column-gap: 5px;
    height: 100vh;
    width: 100vw;
}

/******************************************************\
* DEFAULt OBJECTS                                      *
\******************************************************/

.columnlabel {
    width: 400px;
}

td.pvproject {
    font-size: 0.8em;
    border-style: solid;
    border-color: Silver;
    border-width: 1px 1px 1px 1px;
}

td.pvhour {
    border-style: solid;
    border-color: Silver;
    border-width: 1px 1px 1px 1px;
    font-size: 0.75em;
    text-align: right;
}

td.pvpreactivity {
    border-style: solid;
    border-color: Silver;
    border-width: 1px 0px 1px 1px;
    font-size: 0.75em;
}

td.pvactivity {
    border-style: solid;
    border-color: Silver;
    border-width: 1px 1px 1px 0px;
    font-size: 0.75em;
}

td.total {
    font-weight: bold;
}

th.pvheader {
    border-style: solid;
    border-color: Silver;
    border-width: 2px 2px 2px 2px;
    font-size: 0.7em;
    width:80px;
}

th.right {
    text-align: right;
}

p.menu {
   font-size: 1.5em; 
   background-color: #00B300;
   height: 32px;
   width: 120px;
   margin-left: 10px;
   margin-bottom: 2px;
   padding:3px;
   cursor: pointer;
   box-shadow: 10px 10px 5px grey;
   border-radius: 5px;
}

p.menu_active {
   font-size: 1.5em; 
   background-color: #008000;
   height: 32px;
   width: 120px;
   margin-left: 14px;
   margin-bottom: 2px;
   padding:3px;
   cursor: pointer;
   box-shadow: 6px 6px 5px grey;
   border-radius: 5px;
}

.ui-widget {
	font-size:12px;
	font-family: "Verdana", "Geneva", sans-serif;
}

td.editcell {
	cursor: pointer;
}

#addbutton {
    margin-top: 20px;
}

