/* Quick Action Buttons - shared style matching cashout page */
.cashout-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  color: #2763E7; /* primary blue */
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  border: none;
  text-decoration: none;
}
.cashout-btn i { font-size: 16px; }
.cashout-btn[disabled], .cashout-btn.disabled {
  background: #e0e0e0;
  color: #9aa0a6;
  box-shadow: none;
  cursor: not-allowed;
}
/* Dashboard quick actions layout tweaks */
.quick-actions .cashout-btn {
  display: flex;
  width: 100%;
  margin-bottom: 12px;
}
