/* ============================================================
   PR389 Super Admin Command Center — styles
   Brand: #FF6B00 orange (accent), #1A1A2E dark, #141310 nav
   Platform-level surface; never shown to tenant users.
   ============================================================ */

.pr389-sa-root {
  background: #f7f7f7;
  color: #1A1A2E;
  min-height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* Chip variants */
.pr389-chip {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pr389-chip-orange { background: #FF6B00; color: #fff; }
.pr389-chip-blue   { background: #0062cc; color: #fff; }
.pr389-chip-grey   { background: #555;    color: #fff; }
.pr389-chip-green  { background: #1c6b34; color: #fff; }
.pr389-chip-amber  { background: #7a5c00; color: #fff; }

/* Read-only warning */
.pr389-readonly-banner {
  background: #FFF3CD;
  border: 1px solid #ffe08a;
  border-radius: 6px;
  padding: 8px 14px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #7a5c00;
}

/* Tenant cards */
.pr389-tenant-card {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: box-shadow 0.15s;
}
.pr389-tenant-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.10); }

/* Tables */
.pr389-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.pr389-table th {
  padding: 8px 10px;
  text-align: left;
  background: #1A1A2E;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
}
.pr389-table td {
  padding: 8px 10px;
  border-bottom: 1px solid #eee;
}
.pr389-table tr:nth-child(even) td { background: #f9f9f9; }

/* Stat boxes */
.pr389-stat-box {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 12px 18px;
  min-width: 100px;
  text-align: center;
}
.pr389-stat-value { font-size: 20px; font-weight: 700; color: #1A1A2E; }
.pr389-stat-label { font-size: 11px; color: #888; margin-top: 2px; }

/* Buttons */
.pr389-btn-primary {
  padding: 6px 16px;
  background: #FF6B00;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s;
}
.pr389-btn-primary:hover { background: #e05c00; }

.pr389-btn-dark {
  padding: 6px 14px;
  background: #1A1A2E;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: opacity 0.15s;
}
.pr389-btn-dark:hover { opacity: 0.85; }
