body {
    margin: 0;
    margin-top: 15%;
    display: flex;
    font-family: sans-serif;
    justify-content: center;
    background: linear-gradient(to left, #007a14, #5c7000);

}

.container {
    background: wheat;
    width: 400px;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 20px;
    text-align: center;
}

h1 {
    margin-bottom: 20px;
    color: #333;
}



.input-section {
    display: flex;
    justify-content: space-between;
}
input {
    flex: 1;
    padding: 10px;
    border: 1px solid;
    border-radius: 6px;
    border-color:white;
    outline: none;
    font-size: 14px;
}

input:focus {
    border-color:black;
}

button {
    padding: 10px 15px;
    margin-left: 8px;
    border: none;
    border-radius: 6px;
    background-color: rgb(0, 139, 185);
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: rgb(0, 191, 255);
}

ul {
    padding: 0px;
    margin-top: 20px;
}

li {
    display: flex;
    padding: 10px;
    border-radius: 6px;
    align-items: center;
    margin-bottom: 10px;
    background: lightcyan;
    justify-content: space-between;
    box-shadow: 0 5px 5px chocolate;
}

/* list buttons */

li button {
    background: red;
    padding: 6px 10px;
    font-size: 12px;
}

li button:hover {
    background: rgb(252, 108, 108);
}

.updatebtn {
    background-color: green;
}

.updatebtn:hover {
    background-color: lightgreen;
}