body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

body, html {
        height: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
    }

.shoutbox_info {
    background-color: #f9f9f9; /* Heller Hintergrund */
    border: 1px solid #ccc; /* Grauer Rand */
    padding: 5px; /* Innenabstand */
    margin: 1px auto; /* Abstand nach oben und unten, zentriert */
    border-radius: 10px; /* Abgerundete Ecken */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
    text-align: center; /* Zentrierter Text */
    font-size: 16px; /* Schriftgröße */
    color: #333; /* Textfarbe */
    max-width: 500px; /* Maximale Breite der Infobox */
	position: relative;
}


.infobox {
    background-color: #f9f9f9; /* Heller Hintergrund */
    border: 1px solid #ccc; /* Grauer Rand */
    padding: 20px; /* Innenabstand */
    margin: 20px auto; /* Abstand nach oben und unten, zentriert */
    border-radius: 10px; /* Abgerundete Ecken */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
    text-align: center; /* Zentrierter Text */
    font-size: 16px; /* Schriftgröße */
    color: #333; /* Textfarbe */
    max-width: 500px; /* Maximale Breite der Infobox */	
	position: relative;
}

.info-item {
    background-color: #f9f9f9; /* Heller Hintergrund */
    border: 1px solid #ccc; /* Grauer Rand */
    padding: 20px; /* Innenabstand */
    margin: 20px auto; /* Abstand nach oben und unten, zentriert */
    border-radius: 10px; /* Abgerundete Ecken */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
    text-align: center; /* Zentrierter Text */
    font-size: 16px; /* Schriftgröße */
    color: #333; /* Textfarbe */
    max-width: 600px; /* Maximale Breite der Infobox */
	position: relative;
}

.shoutbox-message {
    background-color: #f9f9f9; /* Heller Hintergrund */
    border: 1px solid #ccc; /* Grauer Rand */
    padding: 10px; /* Innenabstand */
    margin: 10px auto; /* Abstand nach oben und unten, zentriert */
    border-radius: 10px; /* Abgerundete Ecken */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
    text-align: center; /* Zentrierter Text */
    font-size: 16px; /* Schriftgröße */
    color: #333; /* Textfarbe */
    max-width: 450px; /* Maximale Breite der Infobox */
	position: relative;
}

.small-text {
    font-size: 12px; /* Kleinere Schriftgröße */
    color: #666; /* Optional: Hellere Textfarbe */
}

.container-wrapper {
    flex: 1;
	display: flex;
    flex-direction: row;
	justify-content: space-between;
    width: 80%;
    margin: 0 auto;
    margin-top: 20px;
}

.header {
    background-color: #006400;
    color: wheat;
    text-align: center;
    padding: 10px 0;
}

    .footer {
        background-color: #006400;
        color: wheat;
        text-align: center;
        position: fixed;
        bottom: 0;
        width: 100%;
    }

.header h1 {
    margin: 0;
}

.container {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    margin: 10px;
    position: relative;
    border-radius: 8px;
}

/* Modal-Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.modal-close {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.modal-close:hover {
    background-color: #0056b3;
}

.show-hint-btn {
    margin-top: 10px;
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.show-hint-btn:hover {
    background-color: #0056b3;
}

h1 {
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
}

p {
    line-height: 1.6;
}

.label {
    font-weight: bold;
}

label {
    margin-bottom: 10px;
    color: #555;
}

select, input[type="text"], input[type="password"], textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

input[type="submit"] {
    padding: 10px;
    background-color: #006400;
    color: wheat;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

input[type="submit"]:hover {
    background-color: #006400;
    color: #fff;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f4f4f4;
}

.sidebar {
    flex: 0 0 200px;  /* Breite der Sidebar */
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;

}

.sidebar a {
    display: block;
    color: #333;
    padding: 10px;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
}

.sidebar a:hover {
    background-color: #006400;
    color: wheat;
}

.sidebar .submenu {
    display: none;
    position: absolute;
    left: 200px;
    top: 0;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.sidebar a:hover + .submenu, .submenu:hover {
    display: block;
}

.content {
    flex: 1; /* Nimmt den restlichen Platz ein */
    padding: 20px;
}

iframe {
    width: 100%;
    height: 680px;
    border: none;
}

/* Popup-Styles */
.popup {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.popup-content {
    margin: 15% auto;
    padding: 20px;
    width: 80%;
    max-width: 1200px;
}

.popup-content img {
    width: 100%;
    height: auto;
    max-width: 1200px;
}

.close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

/* Formular-Styles */
#entryForm {
    display: none;
    margin-top: 20px;
}

    .menu-section {
        display: none;
        margin-left: 20px;
    }

    .menu-header {
        cursor: pointer;
        font-weight: bold;
		margin-top: 10px;
    }

    /* Standardmäßig aufgeklappte Menüs */
    #homeMenu, #accountMenu {
        display: block;
    }