<style>
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.topnav {
  overflow: hidden;
  background-color: #1F2024;
}

.topnav ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

.topnav li {
  float: left;
  display: block;
  color: #EC7034;
  text-align: left;
  padding: 8px 8px;
  text-decoration: none;
  font-size: 15px;
  border: 1px solid grey;
  margin: 0px;
}

.topnav li:hover {
  background-color: #ddd;
  color: black;
  cursor: pointer;
}

.topnav li.lisearch{
  background-color: #1F2024;
  cursor:default;
  border: 0px;
}

.topnav li.lisearch:hover {
  background-color: #1F2024;
  cursor:default;
}

.topnav li.active {
  background-color: #7F7F7F;
  color: white;
}

.topnav .icon {
  display: none;
  border: 0px;
}

.content {
  margin-left: 16px;
}

.titel {
  font-variant: small-caps;
  font-size: 26px;
  font-weight: bold;
  color: white;
  background-color: black;
}

.footer {
  background-color: #1F2024;
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  padding: 0px;
  position: relative;
  width: 100%;
  bottom: 0px;
}

.livesearch {
  font-size: 12px;
  position: absolute;        
  background: white;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  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 */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

tr.detail:nth-child(even){
  background-color: #e1e1e1;
}

.detail:hover,
.detail:nth-child(even):hover,
.detail:focus {
  cursor: pointer;
  background-color: #e1e1e1;
}

input[type=text]:read-only {
  background-color: white;
  color: black;
  border-style: dashed;
  border-width: thin;
  border-color: black;
}

@media screen and (max-width: 700px) {
  .topnav li:not(:first-child) {
    display: none;
  }
  .topnav li.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 700px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive li {
    float: none;
    display: block;
    text-align: left;
    border: 0px;
  }
}
</style>