/*
In diesem CSS-Code werden alle grundlegende Aussehenseingenschaften festgelegt. Dieser Code wird bei allen Seiten eingebunden.
Auch werden hier Aussehenseingenschaften für Elemente, die auf jeder Seite vorkommen festgelegt.
*/
body {
    margin: 0;
    padding: 0;
    background-color: rgb(64, 68, 66);
}

* {
    font-family: Sans-Serif;
    color: white;
}

p, button, input, select, option, label, summary {
    font-size: 18px;
}

summary {
    cursor: pointer;
}

input, select, option {
    color: black;
}
button {
    background-color: #575757;
    color: white;
    border: 3px solid black;
    cursor: pointer;
}


.whiteText {
    color: white;
}

.blackText {
    color: black;
}

#menubar {
    z-index: 10;
}

#menuButtons {
    float: right;
    margin-right: 15px;
    height: 80px;
    
}

.logo {
    width: 100px;
    float: left;
    margin-right: 10px;
}

#menuTitle {
    float: left;
    margin-top: 30px;
}

.menuButton {
    height: 50px;
    width: 110px;
    margin-top: 25px;
    background-color: #575757;
    color: white;
    border: 3px solid black;
    margin-right: 5px;
    padding: 0px;
}

#content {
    margin-left: 15px;
    flex: 1;
}
#menubar, #footer {
    background-color: #333;
    padding-left: 15px;
}

#footer {
    margin-top: 15px;
    padding: 15px;
    
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Vollständige Bildschirmhöhe */
}

.footerField {
    margin-right: 30px;
    margin-bottom: 30px;
    width: fit-content;
    display: inline flow-root;
}

#legalNotice {
    margin-left: auto;
    margin-right: 15px;
    margin-top: auto;
    float: right;
}

.closeButton {
    position: unset;
    float: right;
    margin-right: 23px;
    border: unset;
    background-color: unset;
    color: #aaa;
    font-weight: bolder;
    font-size: 30px;
}

.closeButton2 {
    position: fixed;
    top: 5px;
    right: 10px;
    border: unset;
    background-color: unset;
    color: #aaa;
    font-weight: bolder;
    font-size: 30px;
}

#Notification {
    padding-left: 15px;
    padding-right: 15px;
    position: fixed;
    width: 100%;
    border: black solid 1px;
    z-index: 20;
}

#NotificationDetails {
    margin-top: -15px;
}

.classAccessCheckboxes {
    margin-left: 10px;
}

.cancelButton {
    position: fixed;
    top: 5px;
    right: 10px;
    height: 40px;
}

#attribution {
    margin-left: -63px;
    position: sticky;
    bottom: 166px;
    margin-top: auto;
    margin-right: 5px;
    font-size: 11px;
}
#attribution2 {
    font-size: 11px;
    right: 1px;
    position: absolute;
    bottom: 163px;
    background-color: #00000094;
    padding: 1px;
}

.strich {
    height: 2px;
    width: 100%;
    background-color: gray;
    margin-bottom: 10px;
}

