/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Merriweather+Sans);

body 
{
    margin: 2;
  /*  font-family: 'Open Sans', sans-serif; */
    font-weight: 400;
    color:  #f3f5f9;
    background-color: #e9e4e4;
    font-size: 11.5pt;
    height: 100vh;
	/* text-align: center; */
	/* background: #333333; */
	/* background: linear-gradient(#333333, #111111); */
    font-family: 'Merriweather Sans', arial, verdana; 
}

.main 
{
    padding: 5px;
    color:  #04070e; /* font color */
    /* margin-top: 100px; */
    /* height: 400px; Used in this example to enable scrolling */
  }

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: white;
    text-align: center;
    font-size: 10px;   
    padding:10px;
    background:rgb(22, 36, 36); 
 }



/* ************************** */
/* NAVIGATION BAR - top menu  */
/* ************************** */

.navbar {
    overflow: hidden;
    background-color: #333;
    /* position: fixed;*/
    top: 0;
    width: 100%;
  }
  
  .navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 14px;
  }
  
  .navbar a:hover {
    background: #ddd;
    color: black;
  }

  /* Active/current link */
  .navbar a.active {
        background-color: #202c36;
        color: white;
  }


  /* ********* */
  /* * LOGIN * */
  /* ********* */

  /* Style the input container */
  .navbar .login-container {
    float: right;
  }
  
  /* Style the input field inside the navbar */
  .navbar input[type=text] {
    padding: 6px;
    margin-top: 8px;
    margin-right: 8px;
    margin-left: 2px;
    font-size: 14px;
    border: none;
    width: 250px; /* adjust as needed (as long as it doesn't break the topnav) */
  }
  
  .navbar input[type=password] {
    padding: 6px;
    margin-top: 8px;
    margin-right: 8px;
    margin-left: 2px;
    font-size: 14px;
    border: none;
    width: 150px; /* adjust as needed (as long as it doesn't break the topnav) */
  }
  
    /* Style the button inside the input container */
  .navbar .login-container button {
     float: right;
     padding: 6px;
     margin-top: 8px;
     margin-right: 16px;
     background: #ddd;
     font-size: 14px;
     border: none;
     cursor: pointer;
     border-radius: 5px;
  }
  
  .navbar .login-container button:hover {
    background: #ccc;
  }

  .navbar .search-container {
    float: right;
  }
  
  .navbar input[type=text] {
    padding: 6px;
    margin-top: 8px;
    font-size: 14px;
    border: none;	
      width:150px; /* deze verandert maar verandert alle inputvelden */
  }
  
  .navbar .search-container input[type=text] {
    padding: 6px;
    margin-top: 8px;
    font-size: 14px;
    border: none;	
      width:300px; /* deze toevoegen laat toe enkel search te veranderen */
  }
  
  .navbar .search-container button {
    float: right;
    padding: 6px 10px;
    margin-top: 8px;
    margin-right: 16px;
    background: #ddd;
    font-size: 14px;
    border: none;
    cursor: pointer;
  }
  
  .navbar .search-container button:hover {
    background: #ccc;
  }

/* DROPDOWN in top menu */
/* *********************** */
  .dropdown {
    float: left;
    overflow: hidden;
  }
  
  .dropdown .dropbtn {
    font-size: 14px;  
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }
  
  .navbar a:hover
  {
    /*background-color: red;*/
    background: #ddd;
    color: black;
  }
  
  .dropdown:hover .dropbtn {
    /*background-color: red;*/
    background: #ddd;
    color: black;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
 




/* TOP NAVIGATION BAR : gray style will not be used - still to add ??? */
/* ------------------ */

/* Add responsiveness - On small screens, display the navbar vertically instead of horizontally */
@media screen and (max-width: 600px) {
  .topnav .login-container {
    float: none;
  }
  .topnav a, .topnav input[type=text], .topnav .login-container button {
    float: none;
    display: block;
    text-align: left;
    width: 100%;
    margin: 0;
    padding: 14px;
  }
  .topnav input[type=text] {
    border: 1px solid #ccc;
  }
}

@media screen and (max-width: 600px) {
  .topnav .search-container {
    float: none;
  }
  .topnav a, .topnav input[type=text], .topnav .search-container button {
    float: none;
    display: block;
    text-align: left;
    margin: 0;
    padding: 14px;
  }
  .topnav input[type=text] {
    border: 1px solid #ccc;  
  }
}


 
   
/* ************* */
/* BREADCRUMBS other  */
/* ************* */

.breadcrumb {
	/*centering*/
  text-align: center;
	display: inline-block;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.35);
	overflow: hidden;
	border-radius: 5px;
	/* Lets add the numbers for each link using CSS counters. */
  /* flag is the name of the counter. to be defined using counter-reset in the parent element of the links*/
	counter-reset: flag;  
}

.breadcrumb a {
	text-decoration: none;
	outline: none;
	display: block;
	float: left;
	font-size: 12px;
	line-height: 36px;
	color: white;
	/*need more margin on the left of links to accomodate the numbers*/
	padding: 0 10px 0 60px;
	background: #333;
	background: linear-gradient(#333, #111);
	position: relative;
}
/*since the first link does not have a triangle before it we can reduce the left padding to make it look consistent with other links*/
.breadcrumb a:first-child {
	padding-left: 46px;
	border-radius: 5px 0 0 5px; /*to match with the parent's radius*/
}
.breadcrumb a:first-child:before {
	left: 14px;
}
.breadcrumb a:last-child {
	border-radius: 0 5px 5px 0; /*this was to prevent glitches on hover*/
	padding-right: 20px;
}

/*hover/active styles*/
.breadcrumb a.active, .breadcrumb a:hover{
	background: #111;
	background: linear-gradient(#333, #111);
}
.breadcrumb a.active:after, .breadcrumb a:hover:after {
	background: #222;
	background: linear-gradient(145deg, #333, #222);
}

/*adding the arrows for the breadcrumbs using rotated pseudo elements*/
.breadcrumb a:after {
	content: '';
	position: absolute;
	top: 0; 
	right: -18px; /*half of square's length*/
	/*same dimension as the line-height of .breadcrumb a */
	width: 36px; 
	height: 36px;
	/*as you see the rotated square takes a larger height. which makes it tough to position it properly. So we are going to scale it down so that the diagonals become equal to the line-height of the link. We scale it to 70.7% because if square's: 
	length = 1; diagonal = (1^2 + 1^2)^0.5 = 1.414 (pythagoras theorem)
	if diagonal required = 1; length = 1/1.414 = 0.707*/
	transform: scale(0.707) rotate(45deg);
	/*we need to prevent the arrows from getting buried under the next link*/
	z-index: 1;
	/*background same as links but the gradient will be rotated to compensate with the transform applied*/
	background: #555;
	background: linear-gradient(135deg, #777, #333);
	/*stylish arrow design using box shadow*/
	box-shadow: 
		2px -2px 0 2px rgba(0, 0, 0, 0.4), 
		3px -3px 0 2px rgba(255, 255, 255, 0.1);
	/*
		5px - for rounded arrows and 
		50px - to prevent hover glitches on the border created using shadows*/
	border-radius: 0 5px 0 50px;
}
/*we dont need an arrow after the last link*/
.breadcrumb a:last-child:after {
	content: none;
}
/*we will use the :before element to show numbers*/
.breadcrumb a:before {
	content: counter(flag);
	counter-increment: flag;
	/*some styles now*/
	border-radius: 100%;
	width: 20px;
	height: 20px;
	line-height: 20px;
	margin: 8px 0;
	position: absolute;
	top: 0;
	left: 30px;
	background: #333;
	background: linear-gradient(#333, #300);
	font-weight: bold;
}


.flat a, .flat a:after {
	background: #333333;
	color:#eee;
	transition: all 0.7s;
}
.flat a:before {
	background: #111;
	box-shadow: 0 0 0 1px #00c;
}
.flat a:hover, .flat a.active, 
.flat a:hover:after, .flat a.active:after{
	background: #3b5998;
}

/* ************* */
/* VERTICAL MENU */
/* ************* */

.vertical-menu {
  width: 200px;
}

.vertical-menu a {
  background-color: #eee;
  color: black;
  display: block;
  padding: 12px;
  text-decoration: none;
}

.vertical-menu a:hover {
  background-color: #ccc;
}

.vertical-menu a.active {
  background-color: #04AA6D;
  color: white;
}


table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 500; 
}

td, th {
  border: 1px solid #8b8b8b;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #dddddd;
	color : black;
}

.fixed_headers {
  width: @table_width;
  table-layout: fixed;
  border-collapse: collapse;
  
  th { text-decoration: underline; }
  th, td {
    padding: 5px;
    text-align: left;
  }
  
  td:nth-child(1), th:nth-child(1) { min-width : @column_one_width;   }
  td:nth-child(2), th:nth-child(2) { min-width : @column_two_width;   }
  td:nth-child(3), th:nth-child(3) { width     : @column_three_width; }

  thead {
    background-color: @header_background_color;
    color: @header_text_color;
    tr {
      display: block;
      position: relative;
    }
  }
  tbody {
    display: block;
    overflow: auto;
    width: 100%;
    height: @table_body_height;
    tr:nth-child(even) {
      background-color: @alternate_row_background_color;
    }
  }
}







