/* Meldungsfenster */
.message-box {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
		backdrop-filter: blur(6px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.message-box:target {
    display: flex;  /* Fenster wird sichtbar, wenn der Ziel-Link angeklickt wird */
}
.message-content {
		font-family: Calibri, Arial, sans-serif;
		background-color: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    max-width: 440px; /* 420px; */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.message-content h2 {
    color: #4CAF50;  /* Erfolgsmeldung grün */
		font-family: Calibri, Arial, sans-serif;
		font-size: 1.5em;
		line-height: 1em;
		font-weight: bold;
		text-transform: none;
		word-spacing: normal;
		letter-spacing: normal;
}
.message-content p {
    color: #333;
		font-family: Calibri, Arial, sans-serif;
		font-size: 1em;
		line-height: 1em;
		font-weight: normal;
		text-transform: none;
		word-spacing: normal;
		letter-spacing: normal;
}
.message-content-fehler {
		font-family: Calibri, Arial, sans-serif;
		background-color: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    max-width: 500px; /* 420px; */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.message-content-fehler h2 {
    color: #FF5722;  /* Fehlermeldung rot */
		font-family: Calibri, Arial, sans-serif;
		font-size: 1.5em;
		line-height: 1em;
		font-weight: bold;
		text-transform: none;
		word-spacing: normal;
		letter-spacing: normal;
}
.message-content-fehler p {
    color: #333;
		font-family: Calibri, Arial, sans-serif;
		font-size: 1em;
		line-height: 1em;
		font-weight: normal;
		text-transform: none;
		word-spacing: normal;
		letter-spacing: normal;

}
.close-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
		font-family: Calibri, Arial, sans-serif;
    font-weight: bold;
}
.close-button:hover {
    background-color: #388E3C;
}
.close-button-fehler {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #FF5722;
    color: white;
    text-decoration: none;
    border-radius: 5px;
		font-family: Calibri, Arial, sans-serif;
    font-weight: bold;
}
.close-button-fehler:hover {
    background-color: #e30000;