*{
    margin: 0;
    padding: 0;
    font-family: 'Times New Roman', Times, serif;
    box-sizing: border-box;
}
.dashboard-container{
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #8DD7BF, #15394C); 
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    box-sizing: border-box;
}
.todo-app{
    flex: 1 1 350px;
    width: 300%;
    max-width: 500px;
    background: #fff;
    height: 80vh;
    padding: 30px;
    border-radius: 10px;
    box-sizing: border-box;
    left: 20px;
    bottom: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
#list-container{
    flex: 1;
    overflow-y: auto;
    max-height: 100%;
    padding-right: 10px;
}
.todo-app h2{
    color: black;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.todo-app h2 img{
    width: 30px;
    margin-left: 10px;
}
.row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #edeef0;
    border-radius: 30px;
    padding-left: 20px;
    margin-bottom: 25px;
}
input{
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 10px;
    font-weight: 14px;
}
button{
    border: none;
    outline: none;
    padding: 16px 50px;
    background: #5bc8b2;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    border-radius: 40px;
}
ul li{
    list-style: none;
    font-size: 17px;
    padding: 12px 8px 12px 50px;
    user-select: none;
    cursor: pointer;
    position: relative;
}
ul li::before{
    content: '';
    position: absolute;
    height: 28px;
    width: 28px;
    border-radius: 50%;
    background-image: url(images/unchecked.png);
    background-size: cover;
    background-position: center;
    top: 8px;
    left: 8px;
}
ul li.checked{
    color: #555;
    text-decoration: line-through;
}
ul li.checked::before{
    background-image: url(images/check.png);
}
ul li span{
    position: absolute;
    right: 0px;
    top: 5px;
    width: 40px;
    height: 40px;
    font-size: 22px;
    color: #555;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
}
ul li span:hover{
    background: #edeef0;
}
.take-notes{
    flex: 1 1 350px;
    max-width: 540px;
    background: #fff;
    height: 65vh;
    padding: 30px;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0, 0, 0 0.1);
}
.type{
    flex: 1;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}
#notes-input-box{
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    resize: none;
    line-height: 1.5;
    overflow-y: auto;
    font-size: 18px;
    font-family:'Times New Roman', Times, serif;
}

.motivational-phrase{
    flex: 1 1 350px;
    max-width: 540px;
    background: #fff;
    height: auto;
    padding: 30px;
    border-radius: 10px;
    box-sizing: border-box;
    text-align: center;
}
.dashboard-header{
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: cursive;
    font-size: 25px;
    text-align: left;
    padding: 20px;
}
#randomQuoteText{
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-align: center;
    line-height: 1.5;
    padding: 20px;
    font-size: clamp(15px, 3vw, 20px)
}
@media (min-width: 1000px) {
    .todo-app{
        position: absolute;
        bottom: 30px;
        left: 20px;
        width: 50%;
        max-width: 540%;
    }
    .take-notes{
        position: absolute;
        bottom: 30px;
        right: 20px;
        width: 45%;
        max-width: 540%;
    }
    .motivational-phrase{
        position: absolute;
        bottom: 535px;
        right: 20px;
        width: 45%;
        max-width: 540%;
    }
}
#upload{
    display: none;
}
label{
    background: white;
    cursor: pointer;
    padding: 10px;
    font-size: 16px;
}
#color{
    width: 20px;
    height: 50px;
    cursor: pointer;
    border: none;
    border-radius: 10px;
}
#btn{
    padding: 28px 50px;
    font-size: 18px;
    cursor: pointer;
    background-color: white;
    border: none;
    border-radius: 12px;
}
label[for="upload"]{
    display: flex;
    padding: 28px 50px;
    font-size: 18px;
    cursor: pointer;
    background: white;
    align-items: center;
    gap: 10px;
    border: none;
    border-radius: 12px;
}
label[for="upload"] i {
    font-size: 30px;
}
form, label[for="upload"]{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    width: 100%

}
h2{
    text-align: center;
    width: 100%;
    margin: 20px 0;
    font-size: 24px;
}