body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: white;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

h1 {
  text-align: center;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  color: #94a3b8;
  margin-bottom: 40px;
}

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

.card {
  background: #1e293b;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h2 {
  margin-top: 0;
  font-size: 20px;
  color: #38bdf8;
}

.card p {
  font-size: 28px;
  margin: 15px 0 0;
}

.success {
  color: #22c55e;
}

.status {
  font-weight: bold;
}

.good {
  color: #22c55e;
  /* groen */
}

.warning {
  color: #facc15;
  /* geel */
}

.bad {
  color: #ef4444;
  /* rood */
}

.note {
  font-size: 0.8em;
  color: #555;
  margin-top: 4px;
}

#countriesTable {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 0.95em;
}

#countriesTable th {
  text-align: left;
  padding: 8px;
  border-bottom: 2px solid #ddd;
}

#countriesTable td {
  padding: 8px;
  border-bottom: 1px solid #eee;
}

#countriesTable tr:hover {
  background: #f7f7f7;
}