body {
    font-family: Arial, sans-serif;
    background-color: #f7f9fc;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
}
ul li {
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
}
ul li:last-child {
    border-bottom: none;
}
ul li:hover {
    background-color: #f0f4f8;
    cursor: pointer;
}
ul li i {
    margin-right: 10px;
    color: #6c757d;
}

a{
    text-decoration: none;
    color: black;
   
}