.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff; /* Blue button */
    color: white;
    text-decoration: none !important; /* Removes underline */
    border-radius: 5px;
    font-weight: bold; /* Optional: makes text stand out */
}

.button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}