/* Brass theme overrides for dashboard stat cards */

.stat-card {
  /* Brass plate (base + brush + soft highlight) to mirror logo */
  background:
    /* brushed lines (warm) */ repeating-linear-gradient(0deg,
      rgba(255, 244, 207, 0.12) 0px, rgba(255, 244, 207, 0.12) 1px,
      rgba(139, 106, 47, 0.06) 1px, rgba(139, 106, 47, 0.06) 2px),
    /* brass plate mid-tones */ linear-gradient(135deg, #f2dda1, #d8b466 40%, #b28945 60%, #e9d08a 100%),
    /* soft highlight */ radial-gradient(120% 100% at 50% -10%, rgba(255,255,255,0.22), transparent 60%);
  background-size: 200% 200%, 200% 200%, auto;
  box-shadow: 0 10px 22px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.22), inset 0 -1px 0 rgba(0,0,0,.22);
  border: 1px solid rgba(94, 72, 30, .25);
  /* Reduce overall card height without changing font sizes */
  padding: 10px 12px;
}

.stat-card::before{
  /* slightly stronger inner bevel on brass */
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10), inset 0 8px 18px rgba(255,255,255,.08), inset 0 -10px 24px rgba(0,0,0,.28);
}

.stat-value {
  font-size: 36px;
  line-height: 1;
  margin: 0;
  color: #000 !important;
  background: none !important;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.stat-label {
  font-size: 14px;
  margin-top: 2px;
  color: #000 !important;
  background: none !important;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

/* Tweak sizes on smaller screens */
@media (max-width: 900px) {
  .stat-value { font-size: 32px; }
  .stat-label { font-size: 12px; }
}
