/* =========================================================
   SHARED: project dashboard card header (QR + IV)
   Primary = Load / Refresh (orange gradient); secondary = New Project.
   Pair with .bw-dashboard-card-heading on the card title.
========================================================= */

.page-inner .card h2.bw-dashboard-card-heading {
  margin: 0 0 12px 0;
  font-size: 18px;
  color: rgba(245, 230, 207, 0.96);
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.bw-dashboard-card-actions.actions,
.bw-dashboard-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 12px;
  position: relative;
  z-index: 1;
}

button.bw-dashboard-btn-primary {
  padding: 10px 14px;
  background: linear-gradient(180deg, rgba(255, 168, 68, 1), rgba(255, 120, 20, 1));
  color: #1b0b00;
  border: 1px solid rgba(255, 170, 60, 0.55);
  box-shadow: 0 14px 30px rgba(255, 120, 20, 0.2);
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
}

button.bw-dashboard-btn-primary:hover {
  background: #ff9a35;
}

button.bw-dashboard-btn-secondary,
button.bw-dashboard-btn-secondary.secondary {
  padding: 10px 14px;
  background: rgba(15, 20, 32, 0.65);
  color: rgba(245, 230, 207, 0.92);
  border: 1px solid rgba(255, 170, 60, 0.2);
  box-shadow: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
}

button.bw-dashboard-btn-secondary:hover,
button.bw-dashboard-btn-secondary.secondary:hover {
  background: rgba(15, 20, 32, 0.78);
  border-color: rgba(255, 170, 60, 0.32);
}
