body{
    margin: 0;
    text-align: center;
    font-family: monospace;
    font-size: 25px;
    background-image: url('Pics/background.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    color: white;
}

.invalid-feedback{
    color: red;
}

/* Add a black background color to the top navigation */
.heading{
    background-color: #b8b8b8;
    color: white;
    text-align: center;
    font-weight: bold;
    padding: 1px;
}

/* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  padding: 14px 16px;
  text-align: center;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #ddd;
  color: black;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #D3D3D3;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  right: 0;
  left: auto;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

#log:hover:before{
  content: 'Do you want to logout';
}
#log:hover:after{
  content: '?';
}

/* Add an active class to highlight the current page */
.topnav a.active {
  background-color: rgb(16, 122, 95);
  color: white;
}
/* Sets input boxes style */
input {
  
  padding: 10px;
  font-size: 16px;
}
.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}

a {
  color: white;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

div.content {
    color: black;
    background:rgb(128,128,128);
    background: transparent\9;
    background:rgba(128,128,128,1);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#66000000,endColorstr=#66000000);
    zoom: 1;
} 

/* Sets text in the bottom right of the screen */
div.fixedLeft {
    position: fixed;
    bottom: 10px;
    left: 10px;
    font-size: 12px;
    z-index: -5;
} 

table {
    border-collapse: collapse;
    width: 100%;
    font-family: monospace;
    font-size: 25px;
    text-align: center;
}
th {
    background-color: #b8b8b8;
    color: white;
}
table td {
    border-left: 1px solid gray;
    padding-bottom: 0.25em;
    padding-top: 0.25em;
    

}
table td:first-child {
    border-left: none;
}
table th {
    border-left: 1px solid #000;
}
table th:first-child {
    border-left: none;
}