* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
}

.topbar {
  height: 40px;
  background: #b30000;
}

.container {
  max-width: 1400px;
  margin: auto;
  padding: 30px 20px 60px;
}

h1 {
  text-align: center;
  color: #ff2b2b;
}

.subtitle {
  text-align: center;
  color: #aaa;
  margin-bottom: 40px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  justify-items: center;   /* 👉 kaarten centreren */
}

.card {
  background: #111;
  border: 1px solid #222;
  border-radius: 14px;
  padding: 25px;
  text-align: center;
  transition: 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 18px rgba(255,0,0,0.3);
}

.card img {
  height: 200px;
  width: auto;
  margin-bottom: 15px;
}

.card h2 {
  color: #ff2b2b;
  margin: 10px 0;
}

.card p {
  color: #ccc;
  font-size: 14px;
}

.card a {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  background: #b30000;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.card a:hover {
  background: #ff2b2b;
}

.stats {
  margin-top: 40px;
  text-align: center;
  color: #888;
}

footer {
  margin-top: 30px;
  text-align: center;
  font-size: 13px;
  color: #555;
}

@media (max-width: 1200px) {
  .dashboard-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}
