
body {
    font-family:  sans-serif;
    background-color: #f5f5dc;
    display: flex;
    justify-content: center;
    padding: 50px;
}

.container {
    background-color: #f0f8ff;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    width: 100%;
    
}

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

form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

input, button {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

button {
    background-color: #28a745;
    color: #fff;
    cursor: pointer;
    border: none;

}

button:hover {
    background-color: #218838;
}




h2 {
    margin-bottom: 10px;
    color: #333;
    font-size: 18px;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    background-color: #eee;
    margin-bottom: 8px;
    padding: 10px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    
  
}

