.custom-btn {
    background-color: #ffcc01; /* Fill the button with yellow */
    color: black; /* Set the text color to black */
    font-weight: bold;
}

.custom-btn:hover {
    background-color: #e6b800; /* Darken the button color on hover */
    color: black; /* Keep the text color black on hover */
    font-weight: bold;
}