/* Custom styles for disabled buttons */

.btn-primary:disabled {
  background-color: rgb(66, 66, 66); /* Custom disabled background */
  color: #9CA3AF; /* Custom disabled text color */
  cursor: not-allowed;
  opacity: 0.6;
}