#msgBox {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
}
#msgBox #fxContentSuccess,
#msgBox #fxContentError
{
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    font-family: 'ArchivoNarrow', sans-serif;
    color: #444444;
    margin: 10px;
}

#fxContentSuccess h1,
#fxContentError h1
{
    font-weight: bold;
    font-size: 24px;
}

#fxContentSuccess .fxIcon,
#fxContentError .fxIcon
{
    color: white;
    border-radius: 50%;
    padding: 10px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px; /* Schriftgröße des Icons */
}

#fxContentSuccess .fxIcon
{
    background: green;
}

#fxContentError .fxIcon
{
    background: darkred;
}

#fxContentSuccess button,
#fxContentError button
{
    display: inline-block;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: transparent; /* Transparenter Hintergrund */
    cursor: pointer;
    border-radius: 5px; /* Runde Ecken */
    transition: background-color 0.3s, color 0.3s;
}

#fxContentSuccess button {
    border: 2px solid green; /* Grüne Farbe für den Rand */
    color: green; /* Grüne Farbe für den Text */
}

#fxContentError button {
    border: 2px solid darkred;
    color: darkred;
}
