*
{
    margin: 0;
    padding: 0;
}
body
{
    background:url(./pattern-1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%; height: 100%;
}
.header
{
    display: flex;
    justify-content: space-between;
    text-align: center;
    padding-top: 50px;
}
.header h1
{
    display: block;
    margin: auto;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 30px;
    color: rgb(0, 0, 0);
}
.header .profile-icon img
{
    width: 50px;
    background: url("Profile-icon.png"), lightgray 50% / contain no-repeat;
}


.container
{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    column-gap: 20px;
    margin: auto; margin-top: 50px;
    width: 520px;
    height: 499px;
    flex-shrink: 0;
    border-radius: 0px 0px 0px 0px;
    border: 2px solid #AEC9FD;
    background: rgb(57, 70, 132);
    backdrop-filter: blur(10px);
    padding-bottom: 10px;
}

.tasklistbox
{
    display: flex;
    justify-content: center; align-items: center;
    align-self: center;
    width: 500px;
    height: 90%;
    flex-shrink: 0;
    overflow: hidden;
}
.tasklist
{
    display: flex;
    width: 100%; height: 100%;
    flex-direction: column;
    justify-content: flex-start; align-items: center;
    padding: 40px; row-gap: 15px;
    overflow-y: scroll; overflow-x: auto;
    flex-wrap: nowrap;
}
.tasklist::-webkit-scrollbar
{
    width: 7px;
}
.tasklist::-webkit-scrollbar-thumb
{
    background-color: rgba(39, 39, 179, 0.448);
}
.tasklist::-webkit-scrollbar-thumb:hover
{
    background-color: rgba(39, 39, 179, 0.963);
}
.tasklist::-webkit-scrollbar-track
{
    background: rgb(255, 255, 255);
}
.listbox
{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    column-gap: 3px;
    width: 100%;
}
.listbox:hover
{
    box-shadow: 0px 4px 8px 1px rgb(44, 44, 44);
}
.listbox .listitem
{
    color: white;
    max-width: 400px;;
    overflow: auto;
}
.listbox .c_btns
{
    display: flex;

}
.c_btns button
{
    background-color: rgba(0, 102, 255, 0.563);
    color: white;
    cursor: pointer;
}
.c_btns button:hover
{
    background-color: rgba(0, 56, 141, 0.563);
}
.listbox button
{
    display: block;
    text-align: center;
    padding: 8px 15px;
}
.tasklist li
{
    display: flex;
    justify-content: center;
    padding: 5px;
    font-size: 1.1rem;
    font-family: 'Nunito', sans-serif;
    width:100%;
    height: fit-content;
    background: linear-gradient(rgba(105, 105, 159, 0.848),rgba(110, 110, 169, 0.886));
    margin-right: 0px;
    cursor:grab;
}


.inputbox
{
    display: flex;
    align-items: center;
    margin: auto; margin-top: 10px;
    width: 510px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 0px 0px 14px 14px;
    border: 0px solid #9BBDFF;
    background: rgb(39, 39, 116);
    padding: 10px;
    border: solid 1px rgb(99, 146, 225);
}
.inputbox textarea
{
    display: block;
    margin: auto;
    height: 100%; width: 75%;
    border: none;
    background: none;
    outline: none;
    font-size: 1.3rem; color: white; font-style: bold;
    text-transform: capitalize;
    overflow: hidden;
    resize: none;
}
.inputbox button
{
    display: flex;
    justify-content:center ;
    text-align: center;
    align-items: center;
    margin-right: 20px;
    font-size: 1rem; 
    width: 70px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 14px;
    padding: 20px;
    cursor: pointer;
}
.inputbox button:hover
{
    background-color: #9BBDFF;
    transition: all ease-in-out 0.2s;
}
