/* Custom CSS to change button color */
.btn-custom{
    background-color: #da9c0b;
    color: #fff; /* Set text color to white */
    font-weight: bold; /* Make the text bold */
}

.btn-custom:hover {
    background-color: rgb(242, 173, 13);
    /* Add any hover styles as needed */
}

.btn-primary{
    background-color: #da9c0b;
    color: #fff; /* Set text color to white */
    font-weight: bold; /* Make the text bold */
}
.btn-primary:hover{
    background-color: rgb(242, 173, 13);
    /* Add any hover styles as needed */

}