.dashboard-container {
  padding: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.stat-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
}

.notification-box {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 260px;
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
