#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: #C0D6EA;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    font-family: 'Montserrat, ArchivoNarrow', sans-serif;
    color: #003E8C;
    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;
}


#celebration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  display: none;
  z-index: 9999;
}

/* Raketen-Partikel */
.rocket {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
}

/* Konfetti-Partikel */
.confetti-piece {
  position: absolute;
  width: 5px;
  height: 8px;
  border-radius: 2px;
}
