body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
}

#body {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.btn {
    display: inline-block;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    padding: 12px 24px;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    border: none;
    
    margin-bottom: 5px;
}

.header {
    padding: 20px;
}

.logoContainer {
    float: right;
}

.flex-center {
    display: flex;
    align-items: center;
}

.logo {
    max-height: 50px;
    margin-right: 10px;
}

.text {
    font-size: 18px;
}

.main-nav {
    text-align: center;
    margin-top: 30px;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    display: inline-block;
}

.main-nav a {
    display: block;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 700;
}

.footer {
    padding: 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer ul li {
    display: inline-block;
    margin-right: 20px;
}

.footer ul li a {
    text-decoration: none;
}

.footer p {
    margin: 0;
    font-size: 12px;
    text-align: right;
}

.home-title {
    text-align: center;
    margin-top: 80px;
}

.home-desc {
    margin-top: 80px;
    margin-bottom: 80px;
    text-align: center;
}

.home-button {
    text-align: center;
    margin-bottom: 80px;
}

.content-title {
    text-align: center;
    margin-top: 80px;
}

.content-desc {
    margin-top: 80px;
    margin-bottom: 80px;
}

.content-button {
    text-align: center;
    margin-bottom: 80px;
}

.sidebar {
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 20px;
}

.sidebar h3 {
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 10px;
}

.sidebar nav {
    margin: 0;
    padding: 0;
}

.sidebar ul {
    margin: 0;
    margin-left: 20px;
    padding: 0;
}

.sidebar li {
    margin-bottom: 10px;
}

.sidebar:before {
    content: "Seiten\00fc bersicht";
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}


table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
}

h1 {
    font-size: 1.5em; /* Größe angepasst */
    margin: 0.67em 0;
    font-weight: bold;
    color: #333;
}

h2 {
    font-size: 1.25em; /* Größe gleich wie h3 */
    margin: 0.75em 0;
    font-weight: bold; /* Fett */
    padding: 10px; /* Padding beibehalten */
    border-radius: 5px; /* Kleiner Radius */
}

h3 {
    font-size: 1.25em; /* Größe angepasst */
    margin: 0.83em 0;
    font-weight: bold; /* Fett */
    color: #333;
}

h4 {
    font-size: 1em; /* Größe angepasst */
    margin: 1em 0;
    font-weight: bold; /* Fett */
    color: #333;
}



/* Form */
form {
  font-family: Arial, sans-serif;
  max-width: 600px;  /* Zurück zur ursprünglichen Breite */
  margin-left: 30px;
  padding: 20px 20px;  /* Reduziertes Padding links */
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
}

/* Stil-Einstellungen für die Formularfelder */
form .form-field {
  margin-bottom: 20px;
}

/* Stil-Einstellungen für die Beschriftungen */
form .form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

/* Stil-Einstellungen für die Eingabefelder */
form .form-input-wrapper input, 
form .form-textarea-wrapper textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 16px;
  background-color: #f9f9f9;
  box-sizing: border-box;  /* Berücksichtigt Padding und Border in der Breite */
}

form .form-input-wrapper input:focus, 
form .form-textarea-wrapper textarea:focus {
  border-color: #007BFF;
  outline: none;
}

.form-field textarea {
    height: 200px;
}

.form-field input[type="submit"] {
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.form-success-message {
    margin-top: 20px;
}
/*End form*/



.timeInfo{
    font-size: 10px;
    color: #666666;
}