body{
  margin:0;
  font-family: Arial, sans-serif;
  background:#f4f7ff;
}

/* HEADER */
.dash-header{
  background:#0b5ed7;
  color:#fff;
  padding:16px 24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.dash-header button{
  background:#fff;
  color:#0b5ed7;
  border:none;
  padding:8px 16px;
  border-radius:20px;
  cursor:pointer;
  font-weight:bold;
}

/* STATS */
.stats-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:20px;
  padding:30px;
}

.stat-box{
  background:#fff;
  border-radius:16px;
  padding:20px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  text-align:center;
}

.stat-box h4{
  margin-bottom:8px;
  color:#555;
}

.stat-box p{
  font-size:22px;
  font-weight:bold;
  color:#0b5ed7;
}

/* CAMPAIGN STATUS */
.campaign-box{
  margin:0 30px 30px;
  background:#fff;
  padding:20px;
  border-radius:16px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}
