/* Add your CSS styles here */
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input, button {
    padding: 0.5rem;
    font-size: 1rem;
}

button {
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    background-color: #fff;
    margin: 0.5rem 0;
    padding: 1rem;
    border: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
}