
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body{
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
  position: relative;
  font-family: 'verdana',sans-serif;
}
header{
  width: 100%;
  background-color: #ebebebe8;
}
.navbar{
  overflow: hidden;
  background-color: #006b99;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.navbar a{
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}
.navbar a:hover{
  background-color: #0d5a81;
}
.navbar a.active{
  background-color: #04AA6D;
  color: white;
}
.navbar .icon{
  display: none;
}
@media screen and (max-width: 600px){
  .navbar div a {display: none;}
  .navbar a.icon{
    float: right;
    display: block;
  }
}
@media screen and (max-width: 600px){
  .navbar.responsive{
    flex-direction: column;
    align-items: flex-start;
  }
  /*
  .navbar.responsive .icon {
    position: absolute;
    right: 0;
    bottom:0;
  }
  */
  .navbar.responsive div{
    width: 100%;
  }
  .navbar.responsive a{
    float: none;
    display: block;
    text-align: left;
  }
  .navbar a:hover{
    background-color: unset;
    color: white;
  }
}
.container{
  box-sizing: content-box;
  padding: 15px;
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rowContainer{
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-around;
}
.heading{
  background-color: #FFFF;
}
.heading th{
  padding: 10px 0;
}
.data{
  text-align: center;
  color: rgb(0, 0, 0);
}
.data td{
  padding: 15px 0;
}
/*
a.fill-div{
  display: inline-block;
  text-decoration: none;
  color: white;
}
a.fill-div:link{
  text-decoration: none;
  color: white;
}
a.fill-div:visited{
  text-decoration: none;
  color: white;
}
a.fill-div:hover{
  text-decoration: none;
  color: white;
}  
a.fill-div:active{
  text-decoration: none;
  color: white;
}
*/
#btnedit{
  text-decoration: none;
  color: #FFFF;
  background-color: #2342cc;
  padding: 5px 20px;
  border-radius: 3px;
  display: flex;
  align-items: center;
}
#btnedit:hover{
  background-color: #011673;
}
#btn{
  text-decoration: none;
  color: rgb(0, 0, 0);
  background-color: #e74c3c;
  padding: 5px 20px;
  border-radius: 3px;
}
#btn:hover{
  background-color: #c0392b;
}
#btnarv{
  text-decoration: none;
  color: rgb(0, 0, 0);
  background-color: #c7d320;
  padding: 5px 20px;
  border-radius: 3px;
}
#btnarv:hover{
  background-color: #7e6700;
}
#btndel{
  text-decoration: none;
  color: rgb(0, 0, 0);
  background-color: #e74c3c;
  padding: 5px 20px;
  border-radius: 3px;
}
#btndel:hover{
  background-color: #c0392b;
}
#btnadd{
  text-decoration: none;
  color: #eee;
  background-color: #96c21c;
  padding: 5px 20px;
  border-radius: 3px;
}
#btnadd:hover{
  background-color: #a0cf1e;
}
input{
  width: 80%;
  padding: 12px 20px;
  margin: 8px 0;
  outline: none;
}
textarea{
  width: 80%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  outline: none;
}
.button{
  display: inline-block;
  border-radius: 4px;
  background-color: #006b99;
  border: none;
  color: #FFFF;
  text-align: center;
  font-size: 28px;
  padding: 20px;
  width: 200px;
  transition: all 0.5s;
  cursor: pointer;
}
.button span{
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.button span:after{
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}
.button:hover{
  background-color: #0d5a81;
}
.button:hover span{
  padding-right: 25px;
}
.button:hover span:after{
  opacity: 1;
  right: 0;
}
label{
  color: rgb(0, 0, 0);
}
select{
  width: 140px;
  height: 35px;
  padding: 10px;
  border-radius:4px;
  box-shadow: 2px 2px 8px #999;
  background: #29941b;
  color: #c2bebe;
  border: none;
  outline: none;
  display: inline-block;
  -webkit-appearance:none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
select option:hover{
  background-color: #29941b;
}
.label{
  position: relative;
}
.label:after{
  content:'<>';
  font: 11px "Consolas", monospace;
  color: #666;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  right: 8px; 
  top:2px;
  padding: 0 0 2px;
  border-bottom: 1px solid #ddd;
  position: absolute;
  pointer-events: none;
}
/*
label:before{
  content: '';
  right: 6px; 
  top:0px;
  width: 20px; 
  height: 20px;
  background: rgb(0, 0, 0);
  position: absolute;
  pointer-events: none;
  display: block;
}
*/
.buttonak{
  border: 1px solid black;
  outline: 0;
  cursor: pointer;
  color: rgb(60, 66, 87);
  background-color: rgb(255, 255, 255);
  box-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 12%) 0px 1px 1px 0px, rgb(60 66 87 / 16%) 0px 0px 0px 1px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(60 66 87 / 8%) 0px 2px 5px 0px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 8px;
  min-height: 28px;
  transition: background-color .24s,box-shadow .24s;
  position: fixed;
  right: 15px;
  bottom: 15px;
  display: none;
}
.buttonak:hover{
  box-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 12%) 0px 1px 1px 0px, rgb(60 66 87 / 16%) 0px 0px 0px 1px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(60 66 87 / 8%) 0px 3px 9px 0px, rgb(60 66 87 / 8%) 0px 2px 5px 0px;
}
.projekte{
  border-radius: 5px;
  background-color: #c4c4c4;/*rgb(89, 89, 89);*/
  color: #000;
  padding: 15px;
  text-decoration: none;
  transition-property: background-color;
  transition-duration: 0.5s;
}
.projekte:hover{
  background-color: #aaa;
  color: #444;
}
#projekte-container{
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.showprojekt{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.showprojekt label:after,
.showprojekt label::before{
  display: none;
}
.showprojekt input[type="text"],
.showprojekt input[type="number"],
.showprojekt input[type="password"]{
  width: 100%;
}
.showprojekt textarea{
  min-width: 200px;
  max-width: 100%;
  min-height: 44px;
  max-height: 250px;
}
.buttonadd{
  display: inline-block;
  border-radius: 4px;
  background-color: #96c21c;
  border: none;
  color: #eee;
  text-align: center;
  font-size: 28px;
  padding: 20px;
  width: 200px;
  transition: all 0.5s;
  cursor: pointer;
}
.buttonadd span{
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.buttonadd span:after{
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
} 
.buttonadd:hover span{
  padding-right: 25px;
}
.buttonadd:hover span:after{
  opacity: 1;
  right: 0;
}
.prowis-table-wrapper{
  overflow-x: auto;
}
.prowis-table{
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
  min-width: 800px;
}
.prowis-table td, .prowis-table th {
  border: 1px solid #ccc;
  padding: 8px;
}
.prowis-table th{
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #666;
  color: white;
}