/* Button hover effect for suggested donation buttons */
.btn-light.border-primary.text-primary:hover {
    background-color: #007bff; /* Replace with your theme's primary color */
    color: #fff;
}

/* Input focus effect */
.form-control.border-primary:focus {
    border-color: #007bff; /* Replace with your theme's primary color */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
