/* Override the default primary button styles */
.btn-primary {
    background-color: #28a745 !important; /* Green */
    border-color: #28a745 !important;    /* Green */
    color: #fff !important;              /* White text */
}

/* Change the hover effect */
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #218838 !important; /* Darker green */
    border-color: #1e7e34 !important;    /* Darker green */
    color: #fff !important;              /* Ensure white text remains */
}

/* Disabled button styling */
.btn-primary:disabled {
    background-color: #94d3a2 !important; /* Lighter green */
    border-color: #94d3a2 !important;
    color: #fff !important;
}
