.custom-button {
    background-color: #4CAF50; /* Green background */
    color: white; /* White text */
    padding: 10px 20px; /* Padding */
    border: none; /* No border */
    cursor: pointer; /* Pointer cursor */
    text-align: center;
    box-sizing: border-box;
    width: 160px;
    white-space: nowrap;
}

.custom-button:hover {
    background-color: #3D8C40 !important; /* Darker green on hover */
}