/* ========== Global KalaSaathi Button Styles ========== */

/* Base button */
.btn {
  display: inline-block !important;
  font-weight: 600 !important;
  text-align: center !important;
  white-space: nowrap !important;
  vertical-align: middle !important;
  user-select: none !important;
  border: 1px solid transparent !important;
  padding: 0.475rem 0.95rem !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
  border-radius: 0.6rem !important;
  transition: all .15s ease-in-out !important;
  cursor: pointer !important;
  text-decoration: none !important;
}

/* Primary button (KalaSaathi brand color) */
.btn-primary,
.btn-primary-custom {
  color: #fff !important;
  background-color: #9b4b18 !important;   /* KalaSaathi Primary */
  border-color: #9b4b18 !important;
}

.btn-primary:hover,
.btn-primary-custom:hover {
  background-color: #7f3f13 !important;   /* Darker hover */
  border-color: #7f3f13 !important;
}

/* Outline button */
.btn-outline,
.btn-outline-primary {
  background-color: #fff !important;
  color: #9b4b18 !important;
  border: 1px solid #9b4b18 !important;
}

.btn-outline:hover,
.btn-outline-primary:hover {
  background-color: #9b4b18 !important;
  color: #fff !important;
}

/* Disabled button */
.btn:disabled,
.btn.disabled {
  opacity: 0.65 !important;
  cursor: not-allowed !important;
}
