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

@keyframes gradientAnimation {
    0% {
        background-position: 0 50%
    }

    to {
        background-position: 100% 50%
    }
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: linear-gradient(90deg, #ff9a9e, #fad0c4, #c3b4e5, #fbc2eb, #ff9a9e, #fad0c4);
    background-size: 500% 200%;
    animation: gradientAnimation 15s linear infinite;
    height: 100%
}

ul {
    padding-left: 20px
}

h1 {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

h2,
h3 {
    margin-top: 10px
}

p {
    margin-bottom: 5px
}

.sidebar {
    width: 240px;
    background-color: #eee;
    padding: 15px;
    flex-shrink: 0
}

.main,
.sidebar {
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1)
}

.main {
    background-color: #fff;
    padding: 10px;
    margin: 0 5%;
    border-radius: 10px 10px 0 0
}

.aside {
    width: 240px;
    background-color: #eee;
    padding: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1)
}

a {
    text-decoration: none;
    font-family: Consolas, Monaco, Menlo, DejaVu Sans Mono, Courier New, Lucida Console;
    color: #fff;
    font-weight: 700;
    background-color: #e46623;
    padding-left: 5px;
    padding-right: 5px
}

a,
input {
    transition: .5s
}

input {
    border: 0;
    border-bottom: 2px solid #ddd;
    color: #000;
    background-color: #eee;
    padding: 4px;
    margin: 5px;
    outline: none
}

.highlightinput {
    font-weight: 700
}

input:focus {
    border-bottom: 2px solid #ffb288
}

.highlightinput:focus {
    background-color: #fee;
    box-shadow: 0 0 1000px 0 #ff5900;
    color: #db4d00
}

button {
    border: 0;
    color: #000;
    background-color: #eee;
    padding: 4px 8px;
    margin: 5px;
    transition: .2s;
    outline: none
}

button:hover {
    color: #db4d00;
    background-color: #ffe4d5
}

button:disabled {
    color: #5a5a5a;
    background-color: #eee
}

a:hover {
    background-color: #8a23e4;
    box-shadow: 0 0 10px 0 rgba(138, 35, 228, .5)
}

.list-footer {
    text-align: center;
    background-color: hsla(0, 0%, 100%, .5);
    color: #5c5c5c;
    padding: 3px;
    font-size: small;
    border-radius: 0;
    border-radius: 0 0 10px 10px;
    margin: 0 5% 10px 5%
}

.navtop {
    margin-left: 20px;
    margin-right: 20px
}

nav {
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    margin: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
    max-width: 1160px
}

nav a {
    color: #000;
    background-color: transparent;
    flex: 1;
    text-align: center;
    padding: 5px 10px;
    flex-grow: 1;
    flex-basis: 0;
    white-space: nowrap
}

nav a:hover {
    background-color: #ddd;
    box-shadow: none
}

.highlight {
    font-weight: 700;
    background: linear-gradient(90deg, #e79093, #dd8a73, #9479d3, #d47abb);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent
}

input[type=checkbox] {
    border: 2px solid #ff9a9e;
    background-color: #fff;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #ff9a9e;
    margin: 5px
}

input[type=checkbox]:checked {
    background-color: #ff9a9e;
    border: 2px solid #ff9a9e
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .5);
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    max-width: 500px;
    max-height: 80%;
    overflow: auto;
    z-index: 1001
}

@media (max-width:500px) {

    .list-footer,
    .main {
        margin-left: 0;
        margin-right: 0
    }
}

* {
    transition: height .3s, opacity .3s, margin .3s, width .3s
}

.container {
    border-radius: 0;
    margin: 0;
    justify-content: center;
    text-align: center;
    width: 80vw;
    max-width: 550px;
    transition: all 0s
}

body {
    zoom: 1.25
}

@media (max-width:1400px) {
    body {
        zoom: 1
    }

    .container {
        width: 100vw !important
    }

    .task-list {
        max-height: max(calc(100vh - 260px), 50px) !important
    }

    #app {
        height: 100vh !important;
        width: 100vw !important
    }
}

.task-item {
    background-color: #eee;
    padding: 2px 5px;
    margin: 5px;
    text-align: left;
    border-radius: 5px;
    justify-content: space-between;
    height: 35px
}

.task-item,
.task-item div {
    display: flex;
    overflow: hidden
}

.task-item div {
    align-items: center
}

.itemLabel {
    width: 80%
}

label {
    max-width: calc(100% - 105px);
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap
}

.task-item input[type=checkbox] {
    margin-left: 15px;
    margin-right: 15px
}

.task-list {
    min-height: 30px;
    max-height: max(calc(80vh - 260px), 50px);
    overflow: auto
}

.condensed {
    font-size: small;
    margin: 3px;
    padding: 2px 5px
}

.badge {
    background-color: #ddd;
    color: #888;
    border-radius: 10px;
    padding: 0 5px;
    margin-left: 5px;
    max-height: 20px;
    text-overflow: clip;
    font-size: .8em
}

.moderate {
    color: #0052bd !important;
    background-color: #dce6f0 !important
}

.danger {
    color: red !important;
    background-color: #fddede !important
}

.good {
    color: green !important;
    background-color: #dff0d8 !important
}

.hidden {
    height: 0 !important;
    opacity: 0;
    margin: 0;
    padding: 0
}

.stop-transition {
    transition: none
}

.btn-div {
    height: 40px;
    overflow: hidden
}

.shrinked {
    width: 0 !important;
    opacity: 0;
    margin: 0;
    padding: 0
}

.message {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 200px;
    overflow: hidden;
    text-align: center
}

label input[type=radio] {
    height: 10px;
    width: 10px
}

#app {
    height: 80vh;
    width: 80vw;
    transition: all 0s
}

.outer-container {
    flex-direction: row;
    flex-wrap: wrap;
    height: calc(100% - 50px);
    width: 100%;
    overflow-x: auto;
    transition: all 0s
}

.outer-container,
.title-bar {
    display: flex;
    justify-content: center;
    align-items: center
}

.title-bar {
    padding: 10px 10px 5px 10px
}

.flex-div {
    display: flex;
    justify-content: center;
    align-items: center
}

.title-bar button,
.title-bar input {
    background-color: #0000;
    color: #fff;
    border: 2px solid #fff;
    font-size: 1.4em;
    padding: 2px 4px
}

.title-bar input {
    font-weight: 700;
    width: 60%
}

.title-bar button:hover {
    background-color: #fff;
    color: #000
}

.iconbutton {
    padding: 2px 4px;
    font-size: large
}

.appmenupopup {
    position: fixed;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: #92929260;
    box-shadow: 0 0 10px 0 #00000060;
    margin: 20px -120px;
    right: 0;
    bottom: 0;
    border-radius: 20px
}

.appmenupopup:hover {
    margin: 20px 20px
}

.apptitle {
    display: flex;
    padding-left: 20px;
    height: 50px;
    justify-content: space-between;
    align-items: center;
    background-color: #fff3
}

.apptitle h1 {
    margin: 0;
    padding: 0
}

.empty-div {
    height: 50%;
    width: 50%;
    background-color: #fffa;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: large
}

@font-face {
    font-family: Material Symbols Outlined;
    font-style: normal;
    src: url(../fonts/MaterialSymbolsOutlined.6cacd548.woff2) format("woff2")
}

.icon {
    font-family: Material Symbols Outlined
}