body {
    font-family: 'Calibri', Gabriola, 'Segoe Script';
    min-height: 100vh;
    min-height: 100svh;
    overflow-x: hidden;
    margin: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
    background-color: rgb(19, 19, 19);
    /* color: rgb(245, 6, 6); */
}

#loginMain {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    max-width: 70%;
    min-width: 25%;
    border: 5px solid rgb(235, 233, 233);
    border-radius: 25px;
    gap: 25px;
    padding: 25px;
    font-size: 1.3em;
    background-color: rgb(230, 225, 225); /* rgb(241, 240, 240) */
    grid-template-areas:    "namelabel name"
                            "passwordlabel password"
                            "superclasslabel superclass"
                            "submit submit";
}

#loginMain h1 {
    font-size: 2.7em;
}

#loginMain h2 {
    font-size: 1.7em;
}

.input {
    border-radius: 8px;
    padding-left: 6px;
}

#namelabel {
    display: grid;
    grid-area: namelabel;
}

#username {
    display: grid;
    grid-area: name;
    margin: 5px 10px 10px 0;
}

#passwordlabel {
    display: grid;
    grid-area: passwordlabel;
}


#password {
    display: grid;
    grid-area: password;
    margin: 5px 10px 10px 0;
}

#superclasslabel {
    display: grid;
    grid-area: superclasslabel;
}

#superclass {
    display: grid;
    grid-area: superclasslabel;
    margin: 5px 10px 10px 0;
}

#submitBtn {
    display: flex;
    font-size: 1.25em;
    border-radius: 11px;
    display: grid;
    margin: auto;
    grid-area: submit;
}

#submitBtn:hover {
    transform: translateY(1px);
    cursor: pointer;
}


.topLinks {
    text-decoration: none;
    color: black;
    font-size: 1.8em;
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

#topnav {
    border-bottom: 2px solid rgb(43, 42, 42);
    background-color: rgb(180, 180, 180);
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "left middle right";
    grid-auto-flow: column;
    gap: 20px;
    padding: 10px 20px;
    box-sizing: border-box;
}

    #topnav a {
        border: 3px solid rgb(39, 39, 39);
        background-color: rgb(238, 237, 237);
        border-radius: 6px;
        min-width: fit-content;
    }

    #topnav a:hover {
        border: 3px solid gray;
        background-color: rgb(197, 197, 197);
        border-radius: 9px;
        font-weight: 600;
    }

                #topnavMain {
                    border-bottom: 3px solid rgb(43, 42, 42);
                    background-color: rgb(180, 180, 180);
                    width: 100%;
                    display: grid;
                    grid-template-columns: 1fr 1fr 1fr;
                    grid-template-areas: "left middle right";
                    grid-auto-flow: column;
                    gap: 20px;
                    padding: 10px 20px;
                    box-sizing: border-box;
                }           

                #topnavMain a, #topnavMain button {
                    border: 3px solid rgb(39, 39, 39);
                    background-color: rgb(238, 237, 237);
                    border-radius: 6px;
                }
            
                #topnavMain a:hover {
                    border: 3px solid gray;
                    background-color: rgb(197, 197, 197);
                    border-radius: 9px;
                    font-weight: 600;
                    cursor: pointer;
                }


                #topnavMain button:hover {
                    cursor: pointer;
                    transform: translateY(1px);
                }

#devcave {
    display: grid;
    grid-area: left;
    font-weight: 650;
    max-width: 8%;
    min-width: fit-content;
}

#dreamsWillComeTrue {
    display: flex;
    grid-area: middle;
    font-weight: 700;
    font-size: 1.5em;
    min-width: fit-content;
    justify-content: center;
    align-content: center;
    color: rgb(19, 19, 19);
}

#abmelden {
    display: flex;
    justify-self: end;
    align-content: center;
    grid-area: right;
    width: 100%;
    font-size: 1.2em;
    max-width: 65px;
    min-width: fit-content;
}

.mainSideLinks {
    text-decoration: none;
    color: black;
    font-size: 1.2em;
    font-weight: 300;
    padding: 20px;
    width: fit-content;
}

#mainSuper {
    display: grid;
    grid-template-columns: 1fr 1fr 4fr;
    grid-template-areas: "side info main";
}

.underLine{
    font-size: 1.5rem;
}

#easterEgg{
    visibility: hidden;
}

#mainSideMenuDiv {
    display: flex;
    flex-direction: column;
    gap: 25px;
    border: 3px solid grey;
    border-radius: 18px;
    min-width: fit-content;
    max-width: 25%;
    height: 520px;
    padding: 15px;
    margin: 100px 0 10% 25px;
    grid-area: side;
}

#mainSideMenuDiv a:hover {
    transform: translateY(3px);
    text-decoration: overline;
    background-color: rgb(209, 209, 209);
    max-width: fit-content;
    border-radius: 4px;
    font-weight: 600;
}

#mainCenterSpaceDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-area: main;
    /* margin: 100px 3% 0 0; */
}

#mainInfoSpaceDiv {
    display: block;
    grid-area: info;
    border-radius: 18px;
    border: 3px solid grey;
    min-width: fit-content;
    max-width: 20%;
    height: 520px;
    margin: 100px 0 0 0;
    padding: 15px;
}

#infoHeader {
    font-size: 1.3em;
}

#infoSpaceStyle {
    padding: 20px;
    
}

#streak {
    color: rgb(63, 61, 61);
    font-weight: 600;
}

footer {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: space-between;
    padding: 40px 20%;
    margin: 4.5% 0 0 0;
    background-color: rgb(95, 94, 94);
    border-top: 3px solid rgb(44, 42, 42);
}

footer a {
    font-size: 1.15em;
    text-decoration: none;
    color: rgb(235, 234, 234);
    gap: 15px;
    border: 4px solid rgb(95, 94, 94);
    border-radius: 15px;
    padding: 5px;
}

footer a:hover {
    border: 4px solid white;
    padding: 5px;
    text-decoration: overline;
    border-radius: 12px;
}

#CONTENTBODY {
    min-height: 100svh;
    color: rgb(228, 228, 228);
}

.images {
    border-radius: 9px 9px 36px 9px;
    border: 8px solid grey;
    width: min(100%, 520px);
    max-width: 100%;
    height: auto;
    display: block;
    margin: 100px 5% 0 0;
}

#whiteHeader {
    color: rgb(245, 245, 245);
    display: inline;
}

#archiveSuper {
    display: grid;
    grid-template-columns: 1fr 4fr;
    grid-template-areas: "side main";
    flex: 1;
    min-height: 0;
}

#archiveMainDiv {
    display: flex;
    flex-direction: column;
    grid-area: main;
    height: auto;
}

#archiveMainDiv.expanded {
    height: auto;
}
            
#archiveMainDiv.expanded .formInputs {
    display: block;
    opacity: 1;
    height: auto;
}


#archiveCenterSpaceDiv {
    display: flex;
    align-items: end;
    align-content: center;   
    flex-wrap: wrap;
    margin: 100px 5% 0 0;
    border: 1px solid grey;
    border-radius: 18px;
    padding: 1.67% 25px;
    min-height: 8svh;
    width: 90%;
    position: relative;
}   

#addArchive {
    padding: 15px 5px;
}

#menubarControls {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}   

#menubarControls.is-active {
    display: flex;
}

#menubarControls:not(.is-active) {
    display: none;
}

#archiveContentSwitcher {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.archivePanel {
    display: none;
    width: 100%;
}

.archivePanel.is-active {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#archiveEntriesContainer {
    margin: 20px 5% 0 0;
}


#archiveDataLogs {
    display: flex;
    flex-direction: column;
    margin: 20px 5% 0 0;
    gap: 10px;
}

.formInputs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: min(100%, 600px);
    margin: 0 auto;
}

.formInputs label {
    font-size: 1.1em;
    font-weight: 600;
}

.formInputs select,
.formInputs input[type="text"],
.formInputs textarea {
    width: 100%;
    box-sizing: border-box;
    font-size: 1.1em;
    padding: 8px 12px;
    border: 2px solid rgb(88, 88, 88);
    border-radius: 8px;
}

.formInputs textarea {
    min-height: 200px;
    resize: vertical;
}

#addArchive, #changeArchive, #submitBtnArchiveNew {
    display:flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    border-radius: 8px;
    min-width: 100px;
    width: fit-content;
    min-height: fit-content;
    height: 60%;
    font-size: 1.2em;
    padding: 14px 5px;
    transition-duration: 0.2s;
    box-shadow: 0 9px #999;
}

#searchbarLabel {
    display: flex;
    font-size: 1.2em;
    margin: 1%;
}

#searchbar {
    display: flex;
    width: 20%;
    height: 50%;
    font-size: 1.2em;
    border: 2px solid rgb(88, 88, 88);
    border-radius: 10px;
    padding-left: 6px;
}

#search {
    width: 8%;
    min-width: fit-content;
    min-height: fit-content;
    height: 50%;
    margin: 0 0 0 13px;
    border-radius: 8px;
    font-size: 1.2em;
    padding: 10px 5px;
}

#search:hover, #addArchive:hover, #changeArchive:hover, #submitBtnArchiveNew:hover {
    border-radius: 10px;
    background-color: rgb(218, 218, 218);
    cursor: pointer;
}   #search:active, #addArchive:active, #changeArchive:active, #submitBtnArchiveNew:active {
        box-shadow: 0 5px #666;
        transform: translateY(4px);
    }


.archiveSideBtns {
    text-decoration: none;
    color: black;
    font-size: 1em;
    font-weight: 300;
    padding: 10px;
    border-radius: 10px;
    width: 70%;
    min-width: fit-content;
}

.archiveSideBtns:hover {
    border-radius: 15px;
    background-color: rgb(209, 209, 209);
    cursor: pointer;
    text-decoration: overline;
}

.trenner {
    height: 80%;
    color: black;
}

.hr {
    margin: auto;
    width: 90%;
    margin: 25px;
    height: 1px;
    background-color:black;
}

#sortBy{
    font-size: 1.2em;
}

#archiveSideMenuDiv {
    display: flex;
    flex-direction: column;
    gap: 25px;
    border: 3px solid grey;
    border-radius: 8px;
    min-width: fit-content;
    max-width: 10%;
    max-height: 65svh;
    padding: 15px;
    margin: 100px 0 10% 25px;
    grid-area: side;
}

#archiveSideMenuDiv a:hover {
    transform: translateY(3px);
    text-decoration: overline;
    background-color: rgb(209, 209, 209);
    max-width: fit-content;
    border-radius: 4px;
    font-weight: 600;
}

.archiveDataItem { 
    width: 90%; 
    border: 1px solid #ddd; 
    padding: 15px; 
    margin: 20px 5% 0 0; 
    border-radius: 18px;
    background-color: #f9f9f9;
    border: 3px solid grey;
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
    grid-area: main;
}
        

        
        .archiveDataItem-field {
            margin: 8px 0;
            font-size: 0.95em;
        }
        
        .archiveDataItem-label {
            font-weight: 600;
            color: #333;
            display: inline-block;
            min-width: 100px;
        }
        
        .archiveDataItem-value {
            color: #555;
            word-break: break-word;
        }


#quickLogStats {
    display: flex;
    border: 3px solid grey;
    border-radius: 8px;
    margin: 30px 75px;
    padding: 12px 55px;
}


#submitQuickLog {
    border-radius: 8px;
    width: 10%;
    min-width: fit-content;
    width: 12%;
    min-height: fit-content;
    height: 60%;
    font-size: 1.2em;
}


#submitQuickLog:hover {
    border-radius: 10px;
    background-color: rgb(209, 209, 209);
    transform: translateY(1px);
    cursor: pointer;
    font-weight: 600;
}


#quickLogWorkSpace {
    display: flex;
    border: 3px solid grey;
    border-radius: 8px;
    margin: 4.5% 75px 3% 75px;
    padding: 12px 25px;
    align-items: center;
    gap: 20px;
}


#quickLogWorkSpace hr{
    height: 20px;
}

.quickLogInputs{
    max-width: 20px;
    font-size: medium;
}

.hours {
    border: 2px solid rgb(129, 126, 126);
    border-radius: 5px;
    padding-right: 4px;
}

.mins {
    border: 2px solid rgb(129, 126, 126);
    border-radius: 5px;
    padding-right: 4px;
}

select {
    appearance: base-select;
    border: 2px solid;
    border-radius: .55em;
}

select::picker(select) {
    appearance: base-select;
    border: 2px solid;
    border-radius: .55em;
    padding: 3px;
}

select option {
    padding: 3px;
}

select option::checkmark {
    color: rgb(19, 167, 19);
    content: "✅";
}

select::picker-icon {
    color: rgb(80, 79, 79);
    padding: 0 3px;
    font-size: 0.75em;
    align-content: center;
    transition: 150ms ease;
}

select:open::picker-icon {
    rotate: 180deg;
}


#projectBody {
    display: grid;
    grid-template-columns: 1fr 4fr;
    grid-template-areas: "side main";
    flex: 1;
    min-height: 0;
    align-items: start;
    align-content: start;
}

#projectFilterMenu {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 25px;
    border: 1px solid grey;
    border-right-color: rgb(216, 216, 216);
    border-radius: 16px 24px 28px 14px;
    min-width: fit-content;
    max-width: 10%;
    padding: 15px;
    margin: 100px 0 10% 25px;
    grid-area: side;
    background-color: rgb(36, 36, 36);
}

#projectMainSpace {
    display: grid;
    grid-area: main;
    align-self: start;
    padding: 15px;
    margin: 50px 0 10% 25px;
}

#submitProject {
    display: flex;
    flex-wrap: nowrap;
    border: 2px solid black;
    border-radius: 8px;
    font-size: 1.15em;
    background-color: rgb(22, 177, 22);
    color: white;
    cursor: pointer;
    padding: 7px 13px;
    justify-self: center;
    align-content: flex-end;
    margin: 15%;
}

#submitProject:hover {
    transform: translateY(2px);
}

#menuSeperator {
    display: flex;
    justify-content: center;
    width: 95%;
    margin: 7.5% 0;
}

#errorSpace {
    display: flex;
    height: 90vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    
}

#infoError {
    display: flex;
    gap: 30px;
    flex-direction: column;
    border: 6px solid grey;
    border-radius: 18px;
    padding: 30px 8%;
    background-color: rgb(212, 211, 211);
    color:rgb(27, 27, 27);
}

#errorBtn {
    border: 2px solid black;
    border-radius: 6px;
    padding: 4px;
    text-decoration: none;
    color: black;
    cursor: pointer;
    width: 50%;
    margin: auto;
}

#errorBtn:hover {
    background-color:#f9f9f9;
    color:#3f3f3f;
    border-radius: 8px;
}

.project-item {
    display: block;
    min-width: fit-content;
    max-width: 85%;
    min-height: fit-content;
    border: 2px solid;
    border-color: rgb(66, 48, 48) rgb(80, 52, 52) rgb(58, 37, 37) rgb(66, 43, 43);
    border-radius: 15px 19px 22px 14px;
    margin: 1% 0 0 1.5%;
    padding: 15px;
    display: grid;
    background-color: rgb(36, 36, 36);
    grid-template-columns: 1fr auto 1fr auto 1fr;
    grid-template-areas:    "id         hr1     name      hr2   button"
                            "completion hr1     time      hr2   button"
                            "status     hr1     modified  hr2   button"
                            "deadline   hr1     active    hr2   button"; 
}

#updateProjectBtn {
    border: 1px solid rgb(71, 71, 71);
    padding: 5px;
    cursor: pointer;
    box-shadow: 2px 2px rgb(19, 19, 19);
    font-size: 1rem;
    border-radius: 8px;
}   #updateProjectBtn:hover {
        transform: translateY(1px);
        box-shadow: 4px 4px rgb(19, 19, 19);
    }

#spacerProject {
    margin: 0;
    padding-top: 12px;
}

.vl1 {
    border-left: 2px solid rgb(46, 46, 46);
    height: 105%;
    margin: 0 35px 0 0;
    grid-area: hr1;
}   .vl2 {
    border-left: 2px solid rgb(46, 46, 46);
    height: 105%;
    margin: 0 10px 0 0;
    grid-area: hr2;
}

#projectContentSpace {
    align-self: start;
    padding-top: 12px;
}

.projectDataField_project_id {
    grid-area: id;
    font-size: 1.15rem;
}

.projectDataField_project_name {
    grid-area: name;
}

.projectDataField_project_completion {
    grid-area: completion;
}

.projectDataField_project_time {
    grid-area: time;
}

.projectDataField_project_deadline {
    grid-area: deadline;
}

.projectDataField_project_status {
    grid-area: status;
}

.projectDataField_project_active {
    grid-area: active;
}

.projectDataField_project_modified {
    grid-area: modified;
}

.projectDataField_project_actions {
    grid-area: button;
    display: flex;
    justify-content: center;
    align-content: center;
}   .projectDataField_project_actions button {
        display: flex;
        cursor: pointer;
        justify-content: center;
        align-self: center;
        align-items: center;
        height: 40px;
        width: 80px;
        background-color: rgb(230, 230, 230);
        border: 2px solid grey;
        border-radius: 8px;
        font-size: 1.1rem;
    }   .projectDataField_project_actions button:hover {
            background-color: rgb(182, 179, 179);
            border-radius: 12px;
            transform: translateY(3px);
            padding-top: 4px;
        }

#ChangeModal_Container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-content: center;
    align-items: start;
    width: 100%;
    max-width: calc(100% - 40px);
}

#ChangeModal_Container > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    padding: 20px;
    border: 1px solid rgb(187, 187, 187);
    border-radius: 12px;
    background-color: rgb(250, 250, 250);
}

#ChangeModal_Child-Old,
#ChangeModal_Child-New {
    width: 100%;
}

.edit-modal-content {
    width: 75%;
    max-width: 1000px;
}

#editModalContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: stretch;
    width: 100%;
}

#editModalContainer > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 18px;
    border: 2px solid rgb(184, 184, 184);
    border-radius: 14px;
    background-color: rgb(250, 250, 250);
    min-height: 520px;
}

#editModalContainer h3 {
    margin-top: 0;
}

#editModalContainer span {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

#editModalContainer input[type="text"],
#editModalContainer input[type="date"] {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    border-radius: 8px;
    border: 2px solid rgb(174, 174, 174);
    font-size: 1rem;
}

#editModalContainer .editStateContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

#editModalContainer .editStateContainer p {
    margin: 0 0 6px 0;
}

.edit-modal-content .submitModalBtn {
    margin-top: 12px;
}

@media (max-width: 900px) {
    .edit-modal-content {
        width: 95%;
    }
    #editModalContainer {
        grid-template-columns: 1fr;
    }
}






#StundenEingabe {
    width: 2.2ch;
    font-size: 1rem;
}

#MinutenEingabe {
    width: 2.2ch;
    font-size: 1rem;
}

#inputDiscipline {
    width: 2.2ch;
    font-size: 1rem;
}

#project_Logger {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px;
    font-size: 1.15rem;
    margin: 55px auto auto auto;
    /* margin: auto; */
    width: 50vw;
    border-radius: 16px;
    border: 2px solid grey;
    background-color: rgb(36, 36, 36);
}

#quickiSubmit {
    margin: 55px 0 0 0;
    font-size: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    padding: 5px;
}

#quickiSubmit:hover {
    transform: translateY(2px);
}

#quicki1, #quicki2, #quicki3, #quicki4, #quicki5 {
    margin: 8px;
    height: 18px;
    width: 18px;
    cursor: pointer;
}

#firstLabel {
    margin-left: 10px;
}

/* Modal */

.modal {
    display: none;
    position: fixed;
    z-index: 5;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    width: 60%;
    max-width: 900px;
    min-width: 320px;
    border: 2px solid black;
    border-radius: 18px;
}   .styleRadioModal {
        margin-left: 8px;
    }


.container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 3px solid black;
    border-radius: 14px;
    padding: 20px;
    font-size: 1.18em;
}

.container h2 {
    display: flex;
    justify-content: center;
    font-size: 1.9em;
}

#stateContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;
    justify-content: space-evenly;
}

#statusItem {
    display: grid;
    justify-self: start;
}

#activeItem {
    display: grid;
    justify-self: end;
    margin-right: 20%;
}

.hr100 {
    width: 99%;
    }   .hr85{
        width: 85%;
        }

.submitModalBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.visButton {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#btnStart {
    font-size: 1.8em;
    cursor: pointer;
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
}

#btnStart:hover {
    transform: translateY(5px);
    background-color: #ccc9c9;
    border-radius: 16px;
}
 
#submitProjectBtn {
    font-size: 1.2rem;
    border-radius: 8px;
    padding: 12px;
    background-color: #fefefe;
    cursor: pointer;
}   #submitProjectBtn:hover {
        transform: translateY(2px);
        background-color: #dbd9d9;
    }

.close {    /* Close Button / X */
    position: absolute;
    right: 26.8%;
    top: 6.8%;
    color: #000;
    font-size: 35px;
}   #styleX {   /* Styling des Außenelements + Allgemeines */
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }   #styleX:hover {
            background-color: #d3d1d1;
        }

#deadlineModal {
    font-size: 1.1rem;
    margin-left: 8px;
}   #completionModal { 
        font-size: 1.1rem;
        max-width: max-content;
        width: 3.2ch;
        min-width: 20px; 
        margin-left: 8px;
    }   #nameModal {
            font-size: 1.1rem;
            min-width: fit-content;
            margin-left: 8px;
        }

.close:hover, .close:focus {
    color:red;
    cursor: pointer;
}

.newClose {   /* Styling des Außenelements + Allgemeines */
    position: absolute;
    right: 26.75%;
    top: 6.8%;
    color: #000;
    font-size: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    }   .newClose:hover {
            background-color: #d3d1d1;
        }

.animate {
    -webkit-animation: animatezoom 0,6s;
    animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)}
  to {-webkit-transform: scale(1)}
}

@keyframes animatezoom {
  from {transform: scale(0)}
  to {transform: scale(1)}
}



/* Feste Positionierung unten rechts */
.simple-toast {
    position: fixed;
    bottom: 45px;
    right: 45px;
    z-index: 9999;
    
    /* Schlichtes Design */
    padding: 20px 25px;
    border-radius: 8px;
    color: #1f1e1e;
    font-family: sans-serif;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    cursor: pointer; /* Zeigt dem Nutzer, dass es klickbar ist */
}

/* Schlichte Farbcodierung */
.simple-toast.success { background-color: #2e7d32; } /* Grün */
.simple-toast.warning { background-color: #f57c00; } /* Orange */
.simple-toast.error   { background-color: #c62828; } /* Rot */




#vis_Container {
    display: grid;
    min-height: 100vh;
    grid-template-columns: 1fr 4fr 4fr;
    grid-template-areas:    "side welcome welcome"
                            "side motivation project"
                            "side important important";
    color: rgb(228, 228, 228);
}

#vis_Sidemenu {
    grid-area: side;
    height: 67%;
    margin: 40% 3% 5% 5%;
    padding: 16% 1.5% 3% 12.5%;
    border-right: 1px outset rgb(221, 221, 221);
    border-radius: 24px 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 6.66%;
    width: 90%;
    min-width: fit-content;
    color: rgb(228, 228, 228);
    background-color: rgb(36, 36, 36);
}   .vis_SideLinks {
        width: 55px;
        height: 25px;
        text-decoration: none;
        color: rgb(228, 228, 228);
    }   .vis_SideLinks:hover {
            cursor: pointer;
            transform: translateY(2px);
            padding: 0 0 0 0;
            background-color: rgb(34, 34, 34);
            padding: 8%;
            border-radius: 4px;
            text-decoration: overline;
            color: rgb(228, 228, 228);
        }   

#vis_Welcome {
    grid-area: welcome;
    align-content: flex-end;
    padding: 1% 0 2% 1.8%;
    margin: 150px 0 0 3%;
    color: rgb(228, 228, 228);
}

#vis_Motivation {
    grid-area: motivation;
    border: 1px solid rgb(81, 80, 82);
    padding: 3% 3px 3% 3.5%;
    margin: 7%;
    border-radius: 16px 13px 18px 13px;
    box-shadow: 1px 1px rgb(81, 80, 82);
    color: rgb(228, 228, 228);
    background-color: rgb(36, 36, 36);
}   #author {
        display: flex;
        justify-content: end;
        padding: 0 15px 0 0;
    }   #quote {
            padding: 0 15px 0 0;
        }

#vis_short_Project {
    grid-area: project;
    border: 1px solid rgb(81, 80, 82);
    padding: 3% 0 3% 3.5%;
    margin: 7%;
    border-radius: 16px 13px 13px 18px;
    box-shadow: 1px 1px rgb(81, 80, 82);
    font-size: 1.15rem;
    background-color: rgb(36, 36, 36);
}   .bfN {
        font-size: 1.2rem;
        font-weight: 650;
    }

#vis_Important {
    grid-area: important;
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
    /* align-items: center; */
    justify-self: center;
    padding: 100px 2% 2% 0;
    border: 1px solid rgb(81, 80, 82);
    border-radius: 24px 18px 36px 24px;
    box-shadow: 1px 1px rgb(81, 80, 82);
    max-width: 80vw;
    margin: 50px 0 0 0;
    background-color: rgb(36, 36, 36);
}   #vis_Important_Tasks {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    }   #vis_Important_Password {
            display: flex;
            gap: 10px;
            flex-direction: column;
            align-items: center;
        }   #vis_Important_Backup {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }   #vis_Important_Deadline {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    gap: 10px;
                }

.vis_Date {
    width: 13ch;
    padding: 3px;
    border-radius: 5px;
}

.vis_Subheader {
    color: rgb(228, 228, 228);
    font-size: 1.75rem;
}

.vis_Btn {
    padding: 7px;
    border-radius: 5px;
    cursor: pointer;
    transition-duration: 0.25s;
    box-shadow: 0 7px #999;
}   .vis_Btn:hover {
        background-color: rgb(218, 218, 218);
    }   .vis_Btn:active {
            box-shadow: 0 3px #666;
            transform: translateY(4px)
        }

#CONTENTBODY2 {
    min-height: 98vh;
    background-color:rgb(40, 40, 40);
    color: rgb(228, 228, 228);
}

#toTheTop {
    display: none;
    position: fixed;
    bottom: 50px;
    right: 2%;
    z-index: 99;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    cursor: pointer;
    border-radius: 50%;
    font-size: 2.2rem;
    padding: 0;
}   #toTheTop:hover {
        transform: translateY(1px);
        color: rgb(194, 194, 194);
        padding: 1.5px;
    }

#indexBackground {
    width: 100%;
    height: 100%;
    background-color: red;
}