:root {
  --scale: 10;
}


body, h1, h2, h3, h4, h5, h6 {
	font-family: "Segoe UI", Arial, sans-serif
}


/* css responsive */
* {
  box-sizing: border-box;
}

.screen{
	background-color: white;
}

.page-wrapper{
	background-color:#FFFFFF;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 10px;
	padding-right: 10px;
}

p {
	color: #003265;
}

h1{
	color: #2e8970;
}
h2{
	color: #569e80;
}
h3{
	color: #0f4c81;
}

a:link {
	font-weight: bold;
	text-decoration: none;
}


input{
	background-color: white;
}

.header {
	width: 100%;
	background-color: #FFFFFF;
	color: #569e80;
	padding: 0px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.footer {
	width: 100%;
	border-radius: 3px;
	margin-top: 40px;
	min-height: 100px;
	background-color: #003265;
	color: #84b898;
	padding: 40px 40px 100px 40px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}


.logo{
	padding: 8px;
	display: block;
	margin-right: auto;
}

.bar{
	background-color: #84b898;
	border-radius: 3px;
	color: #000000;
	padding: 15px;
}

.bar h1,h2,h3 {
	color: #073f77;
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}

.menu{
	display: flex;
	flex-grow: 1;
	flex-direction: row-reverse;
    align-items: flex-end;
    flex-wrap: wrap;
}

.menu-item{
	min-width: 40px;
	max-width: 150px;
	padding: 6px 16px 6px 16px;
	border-radius: 3px;
	color: #003265;
	font-weight: bold;
}

.menu-item:hover {
	background-color: #003265;
	color: #FFFFFF; 
}

.form-container{
	width: 50%;
	min-width: 300px;
	margin-top: 30px;
	margin-right: auto;
	margin-bottom: 30px;
	margin-left: auto;
	background-color: #FFFFFF;
	border: 1px solid #0f4c81;
	border-radius: 3px;
	padding: 20px;
}

form{
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

input[type=text],[type=password],[type=email] {
  width: 70%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
}

input[type=submit]{
	min-width: 40px;
	max-width: 100px;
	padding: 6px 16px 6px 16px;
	border-radius: 3px;
	color: #003265;
	font-weight: bold;
}

table{
	}

td{
	padding-left: 10px;
}


/* Styles for charts */
.chart-canvas {
	margin-top: 5px;
	margin-bottom: 5px;
	padding: 5px 5px 2px 5px;
	border-width: 3px;
	border-color: #0f4c81;
	border-radius: 10px;
	border-style: solid;
	width: 100%;
	background-color: white;
	overflow-x: scroll;
	overflow-y: hidden;
}

.chart-title h2{
	color: #569e80;
	margin-top: 15px;
}

.chart-container {
	margin: 0px 0px 2px 0px;
	height: 250px;
	width: var(--chartwidth,300px);
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 2px;
	line-height: 15px;
}

.chartcolumn {
	display: flex;
	flex-direction: column-reverse;
	width: var(--barwidth,50px);
	flex-grow: 1;
	transition: all 300ms ease;
	line-height: 0px;
	align-items: flex-end;
	height: 100%;
}

.chartcolumn:hover {
	flex-grow: var(--scale);
	line-height: 0px;
	border-left: 2px dotted var(--color8,#99D98C);
}

.chartbar {
	display: flex;
	width: 100%;
	border-color: #CCC;
	border-width: 1px;
	border-top-style: solid;
	height: var(--bar-height, 100%);
	transition: all 300ms ease;
	background-color: #84b898; 
 	line-height: 0px;
 }

.chartbar::after {
	content: attr(data-value);
	opacity: 0;
	color: white;
	margin: auto;
	text-align: center;
	transition: opacity 300ms ease;
	line-height: 0px;
}

.chartbar:hover {
	height: calc(var(--minbar-heighthover,100%)*1.5);
	opacity: 1;
	line-height: 0px;
}

.chartbar:hover::after {
	opacity: 1;
	line-height: 0px;
}

.chartlabel {
	align-self: center;
	text-align: center;
	line-height: 12px;
	color: white;
}

 .chartcolumn:hover > .chartlabel{
	line-height: 15px;
	color: #003265;
}
  
.timebar-year{
	border-left: 2px solid #ccc;
	display: inline;
	height: 10px;
	width: 100%;
	margin-left: 0;
	line-height: 10px;
	font-size: 7px;
	text-align: center;
}

.clusterdetails{
	padding: 4px;
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
}

.pie-chart-container {
	margin: 0px 0px 2px 0px;
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
	align-items: flex-start;
	gap: 2px;
	line-height: 15px;
}

.pie-chart{
	height: 360px;
	width: 360px;
}

@media screen and (max-width: 640px){
	.pie-chart{
		font-size: 14px;
		}
	}


.horizontal-bar-chart{
	display: flex;
	flex-direction: row;
	width: 400px;
}


.horizontal-legenda{
	flex-basis: 150px;
}

.greensherpareport{
	height: 250px;
	border: 3px solid #0f4c81;
	border-radius: 10px;
	padding: 20px;
	margin-top: 20px;
}


.report_tablecontainer{
	height: 100%;
	overflow: auto;
}
	
.report_table th{
	background-color: #84b898;
	padding: 0 15px 0 10px;
	
}

.report_table thead {
    position: sticky;
    inset-block-start: 0; /* "top" */
}

.report_table td{
	vertical-align: top;
	padding: 0 15px 0 10px;
	border-spacing: 0px;
}

.report_table tbody:nth-child(even) {
	background-color: #f2f2f2;
	}