.subtask-input{
    position: relative;
}

#subtask-icons{
    position: absolute;
    display: flex;
    gap: 4px;
    right: 16px;
    top: 28px;
    transform: translateY(-50%); 
}

#subtask-icons img:hover {
    background-color: #EEEEEE;
    border-radius: 50px;
    cursor: pointer;
}

.subtask-divider{
    width: 1px;
    background-color: #D1D1D1;
}

ul{
    display: flex;
    flex-direction: column;
    height: 100px;
    gap: 8px;
    padding-top: 8px;
    padding-inline-start: 0px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #A8A8A8 transparent;
}

.subtask-scrollbar {
    height: 100px;
}

.list-subtask{
    height: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 14px 0 10px;
    position: relative;
}

.list-subtask::before {
    content: "•";
    font-size: 16px;
    color: black;
    padding-right: 5px;
}

.list-subtask:hover{
    cursor: pointer;
    background-color: #EEEEEE;
    border-radius: 10px;
}

.list-subtask:hover .edit-bts-subtask {
    display: flex !important;
}

.flex-li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 408px;
}

.edit-bts-subtask{
    display: flex;
    gap: 4px;
}

.edit-bts-subtask img:hover{
background-color: #EEEEEE;
border-radius: 50px;
cursor: pointer;
}

#list-subtasks li{
    list-style-position: outside;
    overflow: visible;
    font-size: 16px;
}

.edit-subtask{
    background-color: #FFFFFF;
    border-bottom: 1px solid #29ABE2;
}

.edit-subtask::before {
    content: none;
}

.edit-subtask:hover{
    background-color: #FFFFFF !important;
    border-radius: 0;
    cursor: default;
}

.edit-subtask .flex-li{
    width: 418px;
}

.subtask-icon-flex{
    display: flex !important;
}

[contenteditable]:focus {
    outline: 0px solid transparent;
}