body {
    font-family: Arial, sans-serif;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: lavender;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px black;
    width: 300px;
}

h1 {
    margin-bottom: 20px;
}

input {
    padding: 10px;
    width: calc(100% - 22px);
    margin-right: 10px;
    border: 1px solid gray;
    border-radius: 5px;
}

button {
    padding: 10px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    padding: 10px;
    border-bottom: 1px solid gray;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

li button {
    background: rgb(95, 18, 18);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
}
