/*	
	student: Belle Bruinsma
	student number: 10676759
	datum: 29 juni 2017
	vak: eindproject programmeren 
*/

/* this is for the html page */
body {
	font-family: "Times New Roman", Georgia, Serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Times New Roman";
    letter-spacing: 5px;
}
.button {
    position: relative;
    background-color: #4CAF50;
    border: none;
    font-size: 28px;
    color: #FFFFFF;
    padding: 20px;
    width: 200px;
    text-align: center;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
}

/* this is the donut */
#donut {
	margin-top:140px;
	bottom:50px;
}

/* this is for the line graph */
.grid .tick {
	stroke: lightgrey;
	opacity: 0.7;
	shape-rendering: crispEdges;
}
 
.grid path {
	stroke-width: 0;
}
 
.axis path {
	fill: none;
	stroke: #bbb;
	shape-rendering: crispEdges;
}
 
.axis text {
	fill: #555;
}
 
.axis line {	
	stroke: #e7e7e7;
	shape-rendering: crispEdges;
}
 
.axis .axis-label {
	font-size: 14px;
}
 
.line {
	fill: none;
	stroke-width: 3px;
}

/* this is for the tooltip of linegraph */
.tooltip {
  position: relative;
  width: 230px;
  height: auto;
  font-family:"Playfair Display";
  background: #fff;
  border: 1px solid #000;
  border-radius: 10px;
  text-align: center;
  font-size: 15px;
  top: -5px;
   left: 110%;
}

.tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent black transparent transparent;
}

/* highlight the country in the table_1 */
td.highlight {
        font-weight: bold;
        color: blue;
}

/* table_1 and table_2 */
#demo1 { 
	margin-top: -16px;
 	height: 30px;
 	width: 400px;
 	font-size: 12px;
 	text-align: left;
}


#demo2 {
	margin-top: 178px;
	bottom: 10px;
 	height: 20px;
 	width: 400px;
 	font-size: 12px;
 	text-align: left;
