/* Cartes de stats */
.admin-cards .card {
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 18px;
}
.admin-cards .card h4 {
  margin: 0 0 6px 0;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 13px;
  opacity: .85;
}
.admin-cards .stat-value {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

/* Panel tableau */
.panel {
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 18px 18px 6px 18px;
  margin-top: 22px;
}
.panel h3 {
  margin: 0 0 14px 0;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Tableau */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}
.admin-table thead th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: left;
  padding: 10px 12px;
  background: rgba(255,255,255,0.12);
  white-space: nowrap;
}
.admin-table td {
  padding: 10px 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  vertical-align: middle;
}

/* Badges statut */
.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  background: rgba(0,0,0,0.25);
}
.badge.active { background: rgba(46,204,113,.25); }
.badge.canceled { background: rgba(231,76,60,.25); }

/* Utilitaires */
.nowrap { white-space: nowrap; }

/* Filtres */
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 12px 0;
}
.filters select,
.filters input {
  min-width: 180px;
}
.filters .button {
  padding: 10px 14px;
}