button {
    cursor: pointer;
    width: 100%;
    padding: 10px 0;
    margin: 5px 0;
    font-size: 16px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    transition: background-color 0.3s;
}

button:active {
    background-color: #ccc; /* Change this to your desired active background color */
}

button:focus {
    outline: none;
}
