:root {
    --white-color: #FAFAFA;
    --darker-white-color: #CECECE;
    --light-grey-color: #BDBDBD;
    --dark-grey-color: #757575;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    height: 100%;
}

#not-popup-window {
    height: 90%;
}


#new-task-button-div {
    height: 10%;
    margin: 10px;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#new-task-button {
    background-color: var(--darker-white-color);
    border: solid var(--light-grey-color) 2px;
    border-radius: 7px;
    font-size: xx-large;
    font-weight: 700;
    height: 100%;
    width: 20%;
    
}

#popup-window {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: none;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border: solid var(--dark-grey-color) 2px;
    background-color: var(--white-color);

    height: 70%;
    width: 30%;
    border-radius: 40px;

}

#new-task-input-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 70%;
    height: 8%;
}

#new-task-input {
    width: 100%;
    height: 100%;
    font-size: x-large;
    background-color: var(--darker-white-color);
    border: solid var(--light-grey-color) 2px;
    border-radius: 7px;
}

#description-input-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 70%;
    height: 16%;
}

#description-input {
    width: 100%;
    height: 100%;
    resize: none;
    font-family: sans-serif;
    background-color: var(--darker-white-color);
    border: solid var(--light-grey-color) 2px;
    border-radius: 7px;
}

#person-input-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 70%;
    height: 8%;
}

#person-input {
    width: 30%;
    height: 50%;
    background-color: var(--darker-white-color);
    border: solid var(--light-grey-color) 2px;
    border-radius: 7px;
}

#urgency-input-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 70%;
    height: 8%;
}

#urgency-input {
    width: 30%;
    height: 50%;
    background-color: var(--darker-white-color);
    border: solid var(--light-grey-color) 2px;
    border-radius: 7px;
}

#location-input-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 70%;
    height: 8%;
}

#location-input {
    width: 60%;
    height: 50%;
    background-color: var(--darker-white-color);
    border: solid var(--light-grey-color) 2px;
    border-radius: 7px;
}

#new-task-submit-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 70%;
    height: 8%;
}

#new-task-submit {
    width: 50%;
    height: 70%;
    background-color: var(--darker-white-color);
    border: solid var(--light-grey-color) 2px;
    border-radius: 7px;
}

#whole-page {
    height: 100%;
    width: 100%;
}

#tasks-and-archivated-tasks {

    width: 100%;
    height: 90%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

#archivated-tasks {
    background-color: var(--white-color);
    border: solid var(--dark-grey-color) 2px;
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 40%;
    height: 100%;
}

#archivated-tasks h2 {
    margin: 10px;
    font-size: xx-large;
}

#tasks {
    background-color: var(--white-color);
    border: solid var(--dark-grey-color) 2px;
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 40%;
    height: 100%;
}

#tasks h2 {
    margin: 10px;
    font-size: xx-large;
}

.task {
    background-color: var(--darker-white-color);
    border: solid var(--light-grey-color) 2px;
    display: none;
    flex-direction: column;
    justify-content: space-around;
    border-radius: 20px;
    margin: 10px;

    width: 80%;
    height: 110px;
}

.task-header {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.task-text {
    border: none;
    font-weight: 900;
    font-size: larger;
    color: black;
    background-color: var(--darker-white-color);
}

.task-text:hover {
    cursor: default;
}

.task-buttons button {
    background: transparent;
    border: none;
}

.task-buttons-icons {
    height: 30px;
    width: 30px;
}

.task-buttons button:hover {
    cursor: pointer;
}

.task-infotext {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.task-infotext:hover {
    cursor: default;
}

.task-infos {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    font-size: larger;
}

.task-infos:hover {
    cursor: default;
}

.task-info-icon-and-text-1,
.task-info-icon-and-text-2,
.task-info-icon-and-text-3 {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.person-icon,
.urgency-icon,
.location-icon {
    width: 20px;
    height: 20px;
}

.task-infotext-description {
    max-width: 70%;
    border: none;
    background-color: var(--darker-white-color);
    color: black;
}



/*calendar*/

.calendar {
    width: 650px;
    height: 100px;

    font-size: x-large;
    font-weight: 700;

    border: solid black 2px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.days {
    border: solid black 2px;
    border-radius: 50%;
    width: 8%;
    height: 50%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/*settings popup*/

:root {
    --lightmode-background-color: #FAFAFA;
    --lightmode-field-color: #CECECE;
    --lightmode-light-border-color: #BDBDBD;
    --lightmode-big-border-color: #757575;

    --darkmode-background-color: #2E3134;
    --darkmode-field-color: #3C4043;
    --darkmode-light-border-color: #202124;
    --darkmode-big-border-color: #17181B;
}


#settings-popup {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: solid var(--darkmode-big-border-color) 2px;
    border-radius: 20px;
    display: none;
    flex-direction: row;


    width: 50%;
    height: 80%;
}

#settings-popup-menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border: solid black 1px;
    padding: 0 10px 0 10px;
}


#settings-popup-account {
    display: none;
}

#settings-popup-erscheinungsbild {
    display: flex;
}

#settings-popup-daten {
    display: none;
}

.monday {
    display: none;
}

.tuesday {
    display: none;
}

.wednesday {
    display: none;
}

.thursday {
    display: none;
}

.friday {
    display: none;
}

.saturday {
    display: none;
}

.sunday {
    display: none;
}

#mobile-navbar-button {
    display: none;
}

#mobile-navbar {
    display: none;
}
