body {
    display: block;
    margin: 8px;
}

div {
    display: block;
    unicode-bidi: isolate;
}

#anmeldemaske{
	display: flex;
	justify-content: center; /* Horizontale Zentrierung */
	align-items: flex-start; /* Inhalt nach oben ausrichten */
	height: 100vh;           /* Die volle Höhe des Viewports */
}

/* Optional: Abstand vom oberen Rand */
.table-wrapper {
	margin-top: calc(100vh / 3 - 50px); /* 50px anpassen, um die vertikale Positionierung fein abzustimmen */
}

.logo {
  height: 70px;
  width: 140px;
  float: left;
  margin-left: 25px;
}

.title {
    height: 70px;
    line-height: 70px;
    text-align: right;
    padding-right: 20px;
    vertical-align: middle;
    font-size: 60px;
    font-weight: 900;
    text-decoration: line-through #ffffff;
    text-decoration-thickness: 3px;
    background: -webkit-linear-gradient(90deg, black, #135599, #278cce);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.headerContainer {
    position: fixed;
    top: 0;
    background-color: white;
    z-index: 100;
    width: 100%;
}

.navBar {
    display: flex;
    background-color: #e6eaef;
    color: #e6eaef;
    height: 34px;
    line-height: 50px;
    text-align: right;
    padding-right: 20px;
    vertical-align: middle;
    font-size: 40px;
    font-weight: 900;
    width: 100%;
}

.navBarPath {
    position: relative;
    left: -18px;
    float: left;
    clear: none;
    height: 34px;
    width: 80%;
}

.navBarPathIncrementText {
    text-align: center;
    transform: skewX(-25deg);
    color: #e6eaef;
    height: 34px;
    line-height: 34px;
    font-size: 15px;
    font-weight: 600;
    vertical-align: middle;
    padding-left: 20px;
}

.navBarPathIncrementText:after {
    content: "\27A4";
    float: right;
    padding-right: 20px;
}

.navBarPathIncrementText a:link, a:visited, a:hover, a:focus, a:active{
	color: #e6eaef;	
	text-decoration: none;
	outline: none;
}

.navBarPathIncrement {
    margin: 0px;
    padding: 0px;
    width: 15%;
    min-width: 150px;
    height: 32px;
    float: left;
    clear: none;
    transform: skewX(25deg);
    border: 1px inset white;
    background-color: #092e63;
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px;
}
.navBarPathIncrement:first-of-type {
    background-color: #ce2727;
}
.navBarPathIncrement:last-of-type{
	background-color: #ce2727;
}
.navBarPathIncrement:last-of-type:hover{
	background-color: #ce2727;
}

.navBarMenu {
    position: relative;
    width: 20%;
    background-color: #092e63;
    transform: skewX(25deg);
    padding-right: 25px;
    left: 15px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.alertBox {
    width: 800px;
    height: 40px;
    display: block;
    position: absolute;
    top: -5px;
    left: 135%;
    z-index: 1;
    /* display: none; */
    opacity: 0;
    transition: all .8s;
}