/* stylesheet.css */

body {
	margin: 0;
	background-color: #FDFDFD;
	color: #000000;
}

#wrapper {
	height: 100%;
	width: 100%;
}

#header {
	background-color: #D3D3D3;
	color: #000000;
	text-align: center;
	vertical-align: middle;
	height: 5%;
	width: 100%;
	min-height: 5vh;
}

#menu {
	background-color: #8B0000;
	color: #FFFFFF;
	height: 95%;
	width: 10%;
	min-height: 95vh;
	float: left;
}

#main {
	height: 95%;
	width: 100%;
}

#navigationbar {
	width: 100%;
	background-color:#00FF00;
}

/* Style the buttons that are used to open and close the accordion panel */
button.menuitem {
    background-color: #4D0000;
    color: #FFFFFF;
    cursor: pointer;
    padding: 0;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
button.menuitem.active, button.menuitem:hover {
    background-color: #660000;
}

button.menuitem:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    float: right;
}

button.menuitem.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
	float: right;
}

button.menuselection {
	background-color: #4D0000;
    color: #FFFFFF;
    cursor: pointer;
    padding: 0;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
}

button.menuselection.active, button.menuselection:hover {
    background-color: #660000;
}

button.navigation {
	background-color: #0000FF;
	color: #FFFFFF;
	cursor: pointer;
	text-align: center;
}

button.navigation.active, button.navigation:hover {
	background-color: #0000AA;
	border: 1px solid black;
}

button.navigationclose {
	background-color: transparent;
	color: #AA0000;
	size: 12px;
	cursor: pointer;
	border: 0;
}

button.navigationclose:after {
	content: '\00D7'; /* Unicode character for "X */
}


/* Style the accordion panel. Note: hidden by default */
div.menuitems {
    padding: 0;
    background-color: #660000;
	color: #FFFFFF;
	max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

p.alignleft {
	float: left;
}

p.alignright {
	float: right;
}

.red {
	color: #FF0000;
	font-weight: bold;
}

.green {
	color: #00FF00;
	font-weight: bold;
}

.yellow {
	color: yellow;
	font-weight: bold;
}

/*Style the polling calendar */
div.pollingcalendar {
	font-family: 'Noto Sans', sans-serif;
	text-align: center;
	font-weight: bold;
}

table.calendar {
	font-family: 'Noto Sans', sans-serif;
	margin-left: auto;
	margin-right: auto;
}

th {
	height: 30px;
	font-weight: 700;
	border: 1px solid black
}

td.complete {
	height: 50px;
	width: 50px;
	background: green;
	border: 1px solid black
}

td.missing {
	height: 50px;
	width: 50px;
	background: red;
	border: 1px solid black
}

td.error {
	height: 50px;
	width: 50px;
	background: yellow;
	border: 1px solid black
}

td.inprogress {
	height: 50px;
	width: 50px;
	border: 1px solid black
}

td a {
	color: black;
}
 
 /* Popup box BEGIN */
div.hover_popup{
    background:rgba(0,0,0,.4);
    cursor:pointer;
    display:none;
    height:100%;
    position:fixed;
    text-align:center;
    top:0;
    width:100%;
    z-index:10000;
}
.hover_popup .popup_helper{
    display:inline-block;
    height:100%;
    vertical-align:middle;
}

.hover_popup > div {
    background-color: #fff;
    box-shadow: 10px 10px 60px #555;
    display: inline-block;
    height: auto;
    max-width: 551px;
    min-height: 100px;
    vertical-align: middle;
    width: 60%;
    position: relative;
    border-radius: 8px;
    padding: 15px 5%;
}

.popupCloseButton {
    background-color: #fff;
    border: 3px solid #999;
    border-radius: 50px;
    cursor: pointer;
    display: inline-block;
    font-family: arial;
    font-weight: bold;
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 25px;
    line-height: 30px;
    width: 30px;
    height: 30px;
    text-align: center;
}

.popupCloseButton:hover {
    background-color: #ccc;
}

.trigger_popup {
    cursor: pointer;
    font-size: 20px;
    margin: 20px;
    display: inline-block;
    font-weight: bold;
}

/* Popup box END */
 