body {
    background-color: #f8fafd;
}

.container {
    position: relative;
    margin: 0 auto;
    width: 650px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    overflow: visible;
    padding-bottom:50px;
}

.container:hover {
    box-shadow: 0px 1px 1px 1px #888888;
}

.words {
    margin-right: 85%;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
}

.middleimage {
    margin-top:45px;
    margin-left:1px;
}

.notasks {
    margin-top: 5.5%;
    margin-left: 1px;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
}

.add {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14.5px;
    text-align: center;
    margin-top: -0.1%;
    margin-left: 1px;
}

.addatask {
    height: 23px;
}

.bordercontainer {
    border: white 4px solid;
    background-color: white;
    border-width: 5px;
    width: 650px;
    border-radius: 15px;
    margin-left:20px;
}

.bordercontainer:hover {
    border: #ecf2fc 4px solid;
    background-color: #ecf2fc;
    width: 650px;
    border-radius: 15px;
}

.title {
    font-size: 15px;
    margin-left: 105px;
    display: none;
    outline: none;
    border: none;
    width: 590px;
    overflow: hidden;
    resize: none;
    white-space: pre-wrap;
}

.newtaskcontainer {
    display: flex;
    flex-direction: row;
}

textarea::placeholder {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

.detailscontainer {
    display: flex;
    flex-direction: row;
    margin-left:70px;
}

.notesthingy {
    display: none;
    height: 19px;
    margin-left: 38px;
    margin-top: -15px;
}

.description {
    margin-top: -14px;
    font-size: 15px;
    margin-left: 15px;
    display: none;
    outline: none;
    border: none;
    width: 620px;
    overflow: hidden;
    resize: none;
    white-space: pre-wrap;
    background-color:transparent;
}

.description::placeholder {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
}

.datecontainer {
    display: flex;
    flex-direction: row;
    margin-right:300px;
}

#today {
    font-size: 12px;
    height: 23px;
    border: 1px grey solid;
    border-radius: 15px;
    padding: 3px;
    width: 60px;
    background-color: white;
}

#tomorrow {
    margin-left: 4px;
    font-size: 12px;
    height: 23px;
    border: 1px grey solid;
    border-radius: 15px;
    padding: 3px;
    background-color: white;
    width: 80px;
}

#date {
    margin-left: 4px;
    font-size: 12px;
    height: 23px;
    border: 1px grey solid;
    border-radius: 15px;
    opacity: 1;
}

.addbutton {
    text-decoration: none;
}

.nothing {
    text-decoration: none;
    color: white;
}

.task-item.completed {
    text-decoration: line-through;
    opacity: 0.6;
}

#incompleteTasks {
    margin-right:450px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.editable-input {
    border: none;
    background: transparent;
    outline: none;
    font-family: inherit;
    font-size: 1rem;
    resize: none;
    width: 100%;
}

