body {
  background: #f2f6fc;
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  margin: 0; padding: 0;
}
.container {
  max-width: 1200px;
  margin: 38px auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 36px rgba(16,44,110,.09);
  padding: 32px 20px 40px 20px;
}
h1 {
  text-align: center;
  color: #2563eb;
  margin-bottom: 18px;
}
.admin-panel {
  max-width: 940px;
  margin: 0 auto 38px auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 32px rgba(18,32,56,0.11), 0 1.5px 5px rgba(16,68,163,0.04);
  padding: 28px 20px 16px 20px;
}
.admin-panel h3 {
  font-size: 1.4em;
  color: #2563eb;
  letter-spacing: .2px;
  text-align: center;
  margin-bottom: 18px;
}
.pending-table,
.store-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.07em;
  border-radius: 12px;
  overflow: hidden;
  background: #f7fafc;
  margin-top: 8px;
  margin-bottom: 0;
}
th, td {
  padding: 13px 12px;
  text-align: center;
}
th {
  background: #2563eb;
  color: #fff;
  font-weight: 700;
  letter-spacing: .25px;
  border: none;
}
tr:nth-child(even) td {
  background: #f1f5fd;
}
tr:nth-child(odd) td {
  background: #fff;
}
td {
  border-bottom: 1px solid #e5e7eb;
}
tr:last-child td { border-bottom: none; }
.approve-btn {
  background: linear-gradient(90deg, #4ade80 0%, #2563eb 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 1em;
  font-weight: 500;
  cursor: pointer;
  transition: background .13s, transform .10s;
  box-shadow: 0 1px 7px 0 rgba(30,58,138,0.07);
}
.approve-btn:hover { background: #2563eb; }
.copy-btn {
  margin-left: 10px;
  background: #2563eb; color: #fff; border: none; border-radius: 6px;
  padding: 7px 18px; font-size: 1em; font-weight: 500; cursor: pointer;
}
.copy-btn:hover { background: #1e40af;}
.status-badge {
  padding: 4px 10px;
  border-radius: 7px;
  font-size: .96em;
  color: #fff;
  background: #64748b;
  font-weight:600;
  margin-left:8px;
  display: inline-block;
}
.status-badge.active { background: #22c55e;}
.status-badge.disabled { background: #ef4444;}
.status-badge.terminated { background: #334155;}
.toggle-switch {
  position: relative; display: inline-block; width: 46px; height: 22px;
}
.toggle-switch input { display:none; }
.slider {
  position:absolute; cursor:pointer; top:0; left:0; right:0; bottom:0;
  background:#e5e7eb; transition:.4s; border-radius:22px;
}
.slider:before {
  position:absolute; content:""; height:16px; width:16px; left:3px; bottom:3px;
  background:white; transition:.4s; border-radius:50%;
}
input:checked + .slider { background:#4ade80; }
input:checked + .slider:before { transform: translateX(22px);}
.action-btn {
  padding: 5px 13px; border: none; border-radius: 5px; cursor:pointer;
  font-weight:500;
}
.terminate { background:#dc3545; color:white;}
.action-btn[disabled] { opacity:0.7; cursor:default; }
.no-pending-msg, .loading-msg {
  text-align:center;color:#888;font-size:1.1em;padding:20px 0;
}
@media (max-width:700px) {
  .container { padding: 12px 2px 26px 2px;}
  th, td { font-size: .95em; padding: 8px 4px;}
  .admin-panel { padding: 10px 2px 16px 2px;}
}
