/* Styles for disabled Buy Credits buttons */

/* Navbar Buy Credits button */
.shadcn-navbar-button[onclick*="showPaymentModal"] {
  background-color: #666666 !important; /* Grey background */
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  pointer-events: none !important; /* Prevents any click events */
}

.shadcn-navbar-button[onclick*="showPaymentModal"]:hover {
  background-color: #666666 !important; /* Keep the same color on hover */
}

/* Mobile menu Buy Credits item */
.shadcn-mobile-menu-item[onclick*="showPaymentModal"] {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  color: #999999 !important;
}

/* Profile page Buy Credits button */
.shadcn-button[onclick*="showPaymentModal"] {
  background-color: #666666 !important;
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  border-color: #555555 !important;
}

/* Disable the payment modal functionality */
#paymentModal {
  display: none !important; /* Ensure the modal never shows */
}
