html {
    display: table;
    margin: auto;
}

body {
    margin-top: 40px;
    background-color: lightslategray;
}

#todoList {
    position: relative;
}

#todoList li {
    background-color: rgb(168, 196, 224);
    padding-left: 10px;
    margin-bottom: 10px;
    list-style-type: none;
    border-radius: 2px;

    list-style: none;
    padding-right: 40px;
    position: relative;
    height: 28px;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 75%;
}

#buttonIsCompleted {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    height: 30px;
}

#deleteBtnID {
    position: absolute;
    top: 50%;
    right: -24%;
    transform: translateY(-50%);
    height: 30px;
    width: 55px;
}

#editBtnID {
    position: absolute;
    top: 50%;
    right: -12%;
    transform: translateY(-50%);
    height: 30px;
    width: 55px;
}

#saveButtonID {
    margin-left: 10px;
    width: 80px;
    background-color: lightgreen;
}

.optionSectionID button {
    width: 120px;
}

#todoTextBox {
    width: 500px;
    height: 35px;
    margin-left: 10px;
    border-radius: 2pt;
    border-color: cornflowerblue;
    border-width: 1pt;
    margin-top: 32px;
    margin-bottom: 14px;
}

#inputEditID {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    height: 28px;
    width: 521px;

    border-radius: 2pt;
    border-color: cornflowerblue;
    border-width: 1pt;
}


button {
    height: 35px;
    border-radius: 4px;
    border-width: 1pt;
    border-color: cornflowerblue;
}

