body {
  margin: 0;
  background: linear-gradient(135deg, #0f172a, #111827);
  font-family: 'Inter', sans-serif;
  color: #f1f5f9;
}

.admin-container {
  padding: 30px;
}

.admin-header {
  margin-bottom: 30px;
}

.admin-header h1 {
  font-size: 26px;
  font-weight: 600;
}

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

.admin-card {
  background: #1e293b;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s ease;
}

.admin-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(59,130,246,0.3);
}

.admin-card h3 {
  margin: 0;
  font-size: 14px;
  color: #94a3b8;
}

.admin-card p {
  font-size: 28px;
  margin-top: 10px;
  font-weight: 600;
}

.admin-table-section {
  background: #1e293b;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
}

.admin-table-section h2 {
  margin-bottom: 20px;
}

.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background: #111827;
}

th, td {
  padding: 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

tr:hover {
  background: rgba(59,130,246,0.08);
}

button {
  background: #ef4444;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: 0.2s ease;
}

button:hover {
  opacity: 0.85;
}
