.role-badge.org-admin {
  background: #7c3aed;
  color: #fff;
}
.org-dashboard {
  padding: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.org-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}
.org-title {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}
.org-subtitle {
  color: #6b7280;
  margin: 4px 0 0;
}
.plan-badge {
  background: #dbeafe;
  color: #1e40af;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
}
.org-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 8px;
}
.org-tab {
  padding: 8px 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 6px;
  font-size: 14px;
  color: #4b5563;
}
.org-tab:hover {
  background: #f3f4f6;
}
.org-tab[data-active="true"] {
  background: #eff6ff;
  color: #2563eb;
  font-weight: 500;
}
.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}
.stat-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}
.stat-card-icon {
  font-size: 24px;
  margin-bottom: 8px;
}
.stat-card-value {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
}
.stat-card-label {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
}
.card-title {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 12px;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.data-table th, .data-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}
.data-table th {
  background: #f9fafb;
  font-weight: 500;
  color: #374151;
}
.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
}
.badge-success { background: #d1fae5; color: #065f46; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-danger { background: #fee2e2; color: #991b1b; }
.badge-info { background: #dbeafe; color: #1e40af; }
.badge-default { background: #f3f4f6; color: #4b5563; }
.quota-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.quota-label { width: 100px; font-size: 14px; }
.quota-bar-wrap { flex: 1; height: 8px; background: #e5e7eb; border-radius: 4px; overflow: hidden; }
.quota-bar { height: 100%; background: #2563eb; border-radius: 4px; }
.quota-text { width: 80px; text-align: right; font-size: 13px; color: #6b7280; }
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-item { padding: 6px 0; font-size: 14px; color: #9ca3af; }
.feature-item[data-enabled="true"] { color: #111827; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
