/* Fix for button text color during loading state */
.btn-accent:disabled {
    color: white !important; /* Force white text color when button is disabled */
    opacity: 0.8; /* Slightly reduce opacity to indicate disabled state */
}

/* Ensure text stays white during animation */
.btn-accent.animate-pulse {
    color: white !important;
}