body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

input[type="text"] {
    padding: 10px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
    font-size: 16px;
}

button {
    padding: 10px 15px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 1px;
}

button:hover {
    background-color: #197d96;
}
#btn {
    margin-top: 15px;
    background-color: rgb(230, 44, 159);

}
#btn:hover {
    background-color: #f0ba46;
}

ol {
    margin-top: 10px;
    padding-left: 0;
    list-style-type: none;
    width: 100%;
    max-width: 400px;
}

li {
    background: white;
    margin: 5px 0;
    padding: 5px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size:20px;
}
/* 
button.delete, button.edit {
    background-color: #dc3545;
    border: none;
    border-radius: 3px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
} */

/* button.edit {
    background-color: #007bff;
}

button.delete:hover {
    background-color: #c82333;
}

button.edit:hover {
    background-color: #e6d81e;
} */