/*
Style sheet for Online Systeembord
*/

/* Main body */
body {color:#303030; font:76% Verdana,Tahoma,Arial,sans-serif;}

/* Basic tags */
a {background-color:inherit; color:#286ea0; font-weight:700; text-decoration:none;}
a:hover {background-color:inherit; color:#286ea0; text-decoration:underline;}
ul {list-style-position: inside; }
li {text-indent: -1em; }

/* Create two columns: one fixed, one flexible */
.column { }
.left {float: left; width:930px;padding-bottom: 2em}
.right {padding-top:35px;}
.row:after {content: ""; display: table; clear: both; }
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 1275px) { .left { width: 100%; } .right {max-width: 500px} }


/* New style */
.main {width:100%;}
.textblock {width:500px;}
.menu {display: inline-block; width: 100px; }

pre {
  display: inline;
  margin: 0;
  font-family: "Courier New",Courier,Arial,Verdana;
}

/* https://www.w3schools.com/howto/howto_css_dropdown_navbar.asp */
/* Navbar container */
.navbar {
  overflow: hidden;
  background-color: #f9f9f9;
  font-family: Arial;
}

/* Links inside the navbar */
.navbar .titlebar {
  float: left;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 16px 16px;
  /*padding-right: 320px;*/
  /*text-decoration: none;*/
}

/* Links inside the navbar */
.navbar .menubar {
  float: right;
  padding-right: 150px;
}

/* Links inside the navbar */
.navbar a {
  font-weight: normal;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 14px; 
  border: none;
  outline: none;
  padding: 17px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a grey background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #ddd;
}

/* Dropdown content (hidden by default) */
.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;
}

/* https://freefrontend.com/css-select-boxes/ */
/* Reset Select */
.dropdown-content select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  outline: 0;
  box-shadow: none;
  border: 0 !important;
  background:  #f9f9f9;
  background-image: none;
}
.dropdown-content select {
  padding: 0em 0em;
  font-size: 14px; 
  cursor: pointer;
  background: none;
}

/* Links inside the dropdown */
.dropdown-content button, .dropdown-content a, .dropdown-content div {
  float: none;
  color: black;
  text-decoration: none;
  font-size: 14px; 
  display: block;
  text-align: left;
  outline: 0px; 
  border:none;
  padding: 5px 5px;
  background: none;
  cursor: pointer;
  line-height: 15px;
  vertical-align: middle;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content button:hover, dropwdown-content a:hover, .dropdown-content div:hover, .dropdown-content .select:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}


/* https://www.w3schools.com/howto/howto_css_modals.asp */
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  max-width: 700px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

.modal-small {
  width: 400px;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


