.cn-dashboard {
  max-width: 1000px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.cn-dashboard h1 {
  text-align: center;
  margin-bottom: 20px;
}
.cn-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
}
.cn-card {
  flex: 1;
  min-width: 200px;
  background: linear-gradient(135deg, #0073aa, #00aaff);
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.cn-card strong { font-size: 26px; display: block; margin-bottom: 5px; }

.cn-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}
.cn-table th, .cn-table td {
  padding: 12px;
  text-align: left;
}
.cn-table th {
  background: #0073aa;
  color: #fff;
}
.cn-table tr:nth-child(even) { background: #f9f9f9; }
