
/* Debug */
* {
border: 0px solid red;
}

body {
    background-color: #f9f9f9;
    color: #333;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

h2 {
    margin: 0;
    padding: 0;
    text-align: center;
}

#header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: nowrap;
    height: 80px;
    align-items: center;
    padding: 0 4px;
}

#headerlogo {
    width: 80px; 
}

#headerlogo img {
    height: 60px;
    cursor: pointer;
}

#headeruser {
    flex: 1; 
    text-align: right;
}

#headeruser p {
    margin: 0;
    font-size: 1.2em;
    font-weight: bold;
}

#content {
    display: block;
    align-items: center;
    padding: 20px;
    border: 0px solid red;
    overflow: auto;
    height: calc(100vh - 230px);
    margin-left: auto;
    margin-right: auto;    
}

main {
    margin: 20px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

table th, table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

table th {
    background-color: #f2f2f2;
    color: #333;
    font-weight: bold;
}

form.form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 400px;
    margin: 0 auto;
}

form.form label {
    margin-bottom: 10px;
    display: block;
    font-weight: bold;
}

form.form input[type=text], form.form input[type=email], form.form input[type=password] {
    padding: 10px;
    border-radius: 3px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
}

form.form input[type=submit], form.form button {
    background-color: #0077c2;
    color: #fff;
    padding: 10px 20px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.5;
    transition: background-color 0.3s ease;
}

form.form input[type=submit]:hover, form.form button:hover {
    background-color: #005b9d;
}

form.form input[type=hidden] {
    display: none;
}

p {
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
}


/* Burger Menu hinter dem Logo */
xnav {
  display: flex;
  xjustify-content: space-between;
  xalign-items: center;
  xwidth:60px;
  xheight:80px;
  xpadding: 0px 20px;
  background-color: #00f;
}

.menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 80px;
  left: 0;
  width: 20%;
  padding: 10px;
  height:300px;
  background-color: #0888CA;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
}

.menu li {
  margin: 10px 0;
  font-size: 2.4em;
}

.menu li a {
  display: block;
  padding: 10px;
  color: #fff;
  text-decoration: none;
}

.menu li a:hover {
  color: #000;
  background-color: #1898DA;
}

#infobox {
    background-color: #eee;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.3);
    display: block;
    align-items: center;
    width: 90%;
    padding: 10px;
    border: 0px solid red;
    text-align: left;
}

#infobox p {
    margin: 0;
    padding: 0;
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
}

#formbox {
    background-color: #eee;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.3);
    display: block;
    align-items: center;
    width: 90%;
    padding: 10px;
    border: 0px solid red;
    text-align: left;
}

#formbox input, email, label {
    width: 100%;
    padding: 4px;
    box-sizing: border-box;

}

#dynhtml {
    background-color: #eee;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.3);
    display: block;
    align-items: center;
    padding: 20px;
    border: 0px solid red;
    text-align: left;
}

#footer {
    background-color: #fff;
    position: absolute;
    display: block;
    height: 40px;
    align-items: center;
    bottom:0px;
    text-align: right;
    padding: 0 4px;
    border: 0px solid red;
}

.ftremail, .ftrlastseen {
    display: block;
    text-align: left;
    nowrap: true;
    white-space: nowrap;
    border: 0px solid blue;
}

.hintblock {
    display: block;
    text-align: left;
    border: 0px solid blue;
}

#imghint {
    display: block;
    text-align: left;
    border: 0px solid blue;
    max-width: 100%;
    max-height: 100%;
    overflow:auto;
}