/**
 * ═══════════════════════════════════════════════════════════════
 * ADMIN DASHBOARD V2.0 - Styles
 * ═══════════════════════════════════════════════════════════════
 */

/* ═══════════════════════════════════════════════════════════════
   DASHBOARD LAYOUT
   ═══════════════════════════════════════════════════════════════ */

.admin-dashboard {
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.dashboard-header h1 {
  font-size: 26px;
  font-weight: 700;
  color: #E5E7EB;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dashboard-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dashboard-actions button {
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.btn-export {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.btn-export:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-refresh {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: white;
}

.btn-refresh:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.btn-recalc-costs {
  background: linear-gradient(135deg, #0d9488, #0f766e);
  color: white;
}

.btn-recalc-costs:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.35);
}

.btn-members {
  background: linear-gradient(135deg, #D4A853, #D4A853);
  color: white;
}

.btn-members:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 168, 83, 0.3);
}

/* ═══════════════════════════════════════════════════════════════
   STATS CARDS GRID
   ═══════════════════════════════════════════════════════════════ */

/* Scoped to Dashboard 2.0 only — avoids overriding original admin panel .stat-card */
.admin-dashboard .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.admin-dashboard .stat-card {
  background: linear-gradient(145deg, rgba(22, 36, 58, 0.96), rgba(14, 24, 42, 0.94));
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(212, 168, 83, 0.14);
}

.admin-dashboard .stat-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(212, 168, 83, 0.2);
  border-color: rgba(212, 168, 83, 0.32);
}

.admin-dashboard .stat-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.admin-dashboard .stat-card-icon {
  font-size: 24px;
  opacity: 0.9;
}

.admin-dashboard .stat-card-badge {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 600;
}

.admin-dashboard .badge-positive {
  background: rgba(52, 211, 153, 0.25);
  color: #34D399;
  border: 1px solid rgba(52, 211, 153, 0.4);
  font-weight: 700;
}

.admin-dashboard .badge-negative {
  background: rgba(248, 113, 113, 0.25);
  color: #F87171;
  border: 1px solid rgba(248, 113, 113, 0.4);
  font-weight: 700;
}

.admin-dashboard .badge-neutral {
  background: rgba(156, 163, 175, 0.2);
  color: #C7C7D1;
  border: 1px solid rgba(156, 163, 175, 0.3);
  font-weight: 700;
}

.admin-dashboard .stat-card-value {
  font-size: 32px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

.admin-dashboard .stat-card-label {
  font-size: 14px;
  color: #C7C7D1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-dashboard .stat-card-sublabel {
  font-size: 12px;
  color: #9B9BAA;
  margin-top: 6px;
}

/* Card variants (navy base + accent strip) */
.admin-dashboard .stat-card.members {
  border-left: 5px solid #D4A853;
  background: linear-gradient(145deg, rgba(22, 36, 58, 0.96), rgba(14, 24, 42, 0.94));
}

.admin-dashboard .stat-card.active {
  border-left: 5px solid #10B981;
  background: linear-gradient(145deg, rgba(22, 36, 58, 0.96), rgba(14, 24, 42, 0.94));
}

.admin-dashboard .stat-card.messages {
  border-left: 5px solid #60A5FA;
  background: linear-gradient(145deg, rgba(22, 36, 58, 0.96), rgba(14, 24, 42, 0.94));
}

.admin-dashboard .stat-card.voice {
  border-left: 5px solid #D4A853;
  background: linear-gradient(145deg, rgba(22, 36, 58, 0.96), rgba(14, 24, 42, 0.94));
}

.admin-dashboard .stat-card.costs {
  border-left: 5px solid #F87171;
  background: linear-gradient(145deg, rgba(22, 36, 58, 0.96), rgba(14, 24, 42, 0.94));
}

.admin-dashboard .stat-card.revenue {
  border-left: 5px solid #34D399;
  background: linear-gradient(145deg, rgba(22, 36, 58, 0.96), rgba(14, 24, 42, 0.94));
}

.admin-dashboard .stat-card.profit {
  border-left: 5px solid #FBBF24;
  background: linear-gradient(145deg, rgba(22, 36, 58, 0.96), rgba(14, 24, 42, 0.94));
}

.admin-dashboard .stat-card.alerts {
  border-left: 5px solid #EF4444;
  background: linear-gradient(145deg, rgba(22, 36, 58, 0.96), rgba(14, 24, 42, 0.94));
}

/* ═══════════════════════════════════════════════════════════════
   COST BREAKDOWN SECTION
   ═══════════════════════════════════════════════════════════════ */

.cost-section {
  background: linear-gradient(145deg, rgba(10, 18, 32, 0.98), rgba(18, 31, 49, 0.98));
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(212, 168, 83, 0.12);
}

.cost-section h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #F5F0E8;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* Inner stat cards — navy tiles to match dashboard (not purple-on-white) */
.admin-dashboard .credit-stat-card {
  background: linear-gradient(145deg, rgba(22, 36, 58, 0.96), rgba(14, 24, 42, 0.94));
  border: 1px solid rgba(212, 168, 83, 0.14);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.admin-dashboard .credit-stat-card:hover {
  border-color: rgba(212, 168, 83, 0.28);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.admin-dashboard .credit-stat-card.total {
  background: linear-gradient(145deg, rgba(12, 22, 40, 0.99), rgba(8, 16, 30, 0.98));
  border: 2px solid rgba(212, 168, 83, 0.45);
  box-shadow: 0 8px 28px rgba(212, 168, 83, 0.12);
}

.admin-dashboard .credit-stat-label {
  color: rgba(245, 240, 232, 0.62);
}

.admin-dashboard .credit-stat-cost {
  color: #FCA5A5;
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.cost-card {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 10px;
  padding: 16px;
}

.cost-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cost-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.cost-row:last-child {
  border-bottom: none;
}

.cost-row.total {
  font-weight: 600;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 2px solid rgba(0,0,0,0.1);
  border-bottom: none;
}

.cost-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #475569;
}

.cost-label .provider-icon {
  font-size: 16px;
}

.cost-value {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
}

.cost-value.negative {
  color: #ef4444;
}

.cost-value.positive {
  color: #10b981;
}

/* ═══════════════════════════════════════════════════════════════
   PROFIT SUMMARY
   ═══════════════════════════════════════════════════════════════ */

.profit-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.profit-card {
  background: white;
  border-radius: 12px;
  padding: clamp(16px, 3vw, 24px);
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  min-width: 0;
}

.profit-card.revenue {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}

.profit-card.costs {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
}

.profit-card.profit {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.profit-card.profit.negative {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
}

.profit-label {
  font-size: clamp(11px, 2vw, 14px);
  font-weight: 600;
  color: #64748b;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.profit-value {
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 700;
  line-height: 1.2;
}

.profit-card.revenue .profit-value {
  color: #059669;
}

.profit-card.costs .profit-value {
  color: #dc2626;
}

.profit-card.profit .profit-value {
  color: #d97706;
}

.profit-card.profit.negative .profit-value {
  color: #dc2626;
}

.profit-period {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   ALERTS SECTION
   ═══════════════════════════════════════════════════════════════ */

.alerts-section {
  background: linear-gradient(145deg, rgba(10, 18, 32, 0.98), rgba(18, 31, 49, 0.98));
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(212, 168, 83, 0.12);
}

.alerts-section h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #F5F0E8;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.alert-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(239, 68, 68, 0.12);
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-left: 3px solid #f87171;
}

.alert-item.warning {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.35);
  border-left-color: #fbbf24;
}

.alert-item.info {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(52, 211, 153, 0.3);
  border-left-color: #34d399;
}

.alert-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-icon {
  font-size: 18px;
}

.alert-text {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.92);
}

.alert-count {
  font-weight: 700;
  color: #fca5a5;
}

.alert-item.warning .alert-count {
  color: #fcd34d;
}

.alert-item.info .alert-text {
  color: rgba(245, 240, 232, 0.92);
}

.alert-item.info .alert-count {
  color: #6ee7b7;
}

.alert-action {
  padding: 8px 14px;
  background: rgba(212, 168, 83, 0.2);
  border: 1px solid rgba(212, 168, 83, 0.45);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #F5F0E8;
  cursor: pointer;
  transition: all 0.2s;
}

.alert-action:hover {
  background: rgba(212, 168, 83, 0.35);
  border-color: rgba(212, 168, 83, 0.6);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   MEMBERS TABLE (Enhanced)
   ═══════════════════════════════════════════════════════════════ */

.members-section {
  background: linear-gradient(135deg, rgba(52, 48, 72, 0.95), rgba(61, 54, 88, 0.95));
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.members-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.members-section-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: #E5E7EB;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.members-table-container {
  overflow-x: auto;
}

.members-table-v2 {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.members-table-v2 th {
  background: linear-gradient(135deg, #D4A853, #B8943A);
  padding: 16px;
  text-align: left;
  font-weight: 700;
  color: #FFFFFF;
  border-bottom: 2px solid rgba(212, 168, 83, 0.3);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 13px;
}

.members-table-v2 th.sortable {
  cursor: pointer;
  user-select: none;
}

.members-table-v2 th.sortable:hover {
  background: linear-gradient(135deg, #8B7BD6, #6B5BB0);
}

.members-table-v2 th .sort-icon {
  margin-left: 4px;
  opacity: 0.5;
}

.members-table-v2 th.sorted .sort-icon {
  opacity: 1;
}

.members-table-v2 td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: middle;
  color: #E5E7EB;
  font-size: 14px;
}

.members-table-v2 tr:last-child td {
  border-bottom: none;
}

.members-table-v2 tr:hover {
  background: rgba(212, 168, 83, 0.12);
  box-shadow: inset 0 0 0 1px rgba(212, 168, 83, 0.2);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.members-table-v2 tr:hover td {
  color: rgba(245, 240, 232, 0.92);
  font-weight: 500;
}

/* Member info cell */
.member-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.member-name {
  font-weight: 700;
  color: #E5E7EB;
}

.members-table-v2 tr:hover .member-name {
  color: #F5F0E8;
}

.member-email {
  font-size: 12px;
  color: #9B9BAA;
}

.members-table-v2 tr:hover .member-email {
  color: #F5E6C8;
}

/* Cost cells */
.cost-cell {
  text-align: right;
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 13px;
}

.cost-cell .amount {
  font-weight: 700;
}

.cost-cell .amount.negative {
  color: #F87171;
}

.members-table-v2 tr:hover .cost-cell .amount.negative {
  color: #FCA5A5;
}

.cost-cell .amount.positive {
  color: #34D399;
}

.members-table-v2 tr:hover .cost-cell .amount.positive {
  color: #6EE7B7;
}

.cost-cell .breakdown {
  font-size: 11px;
  color: #9B9BAA;
}

.members-table-v2 tr:hover .cost-cell .breakdown {
  color: rgba(245, 240, 232, 0.55);
}

/* Usage cells */
.usage-cell {
  text-align: center;
}

.usage-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 12px;
}

.usage-badge.chat {
  background: rgba(96, 165, 250, 0.2);
  color: #60A5FA;
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.members-table-v2 tr:hover .usage-badge.chat {
  background: rgba(96, 165, 250, 0.22);
  color: #93C5FD;
  border-color: rgba(147, 197, 253, 0.35);
}

.usage-badge.voice {
  background: rgba(212, 168, 83, 0.2);
  color: #D4A853;
  border: 1px solid rgba(212, 168, 83, 0.3);
}

.members-table-v2 tr:hover .usage-badge.voice {
  background: rgba(212, 168, 83, 0.28);
  color: #F5E6C8;
  border-color: rgba(245, 230, 200, 0.35);
}

.usage-badge.daily {
  background: rgba(251, 191, 36, 0.2);
  color: #F59E0B;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.members-table-v2 tr:hover .usage-badge.daily {
  background: rgba(245, 158, 11, 0.22);
  color: #FCD34D;
  border-color: rgba(252, 211, 77, 0.35);
}

/* Profit cell */
.profit-cell {
  text-align: right;
}

.profit-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
}

.profit-badge.positive {
  background: rgba(52, 211, 153, 0.25);
  color: #34D399;
  border: 1px solid rgba(52, 211, 153, 0.4);
}

.members-table-v2 tr:hover .profit-badge.positive {
  background: rgba(52, 211, 153, 0.22);
  color: #6EE7B7;
  border-color: rgba(110, 231, 183, 0.4);
}

.profit-badge.negative {
  background: rgba(248, 113, 113, 0.25);
  color: #F87171;
  border: 1px solid rgba(248, 113, 113, 0.4);
}

.members-table-v2 tr:hover .profit-badge.negative {
  background: rgba(248, 113, 113, 0.22);
  color: #FCA5A5;
  border-color: rgba(252, 165, 165, 0.45);
}

.profit-badge.neutral {
  background: rgba(156, 163, 175, 0.2);
  color: #9CA3AF;
  border: 1px solid rgba(156, 163, 175, 0.3);
}

.members-table-v2 tr:hover .profit-badge.neutral {
  background: rgba(156, 163, 175, 0.18);
  color: #D1D5DB;
  border-color: rgba(209, 213, 219, 0.35);
}

/* Actions cell */
.actions-cell {
  white-space: nowrap;
}

.actions-cell button {
  padding: 6px 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  margin-right: 4px;
  transition: all 0.2s;
}

.btn-details {
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.3), rgba(212, 168, 83, 0.3));
  color: #E5E7EB;
  border: 1px solid rgba(212, 168, 83, 0.4);
  font-weight: 600;
}

.btn-details:hover {
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.5), rgba(212, 168, 83, 0.5));
  box-shadow: 0 4px 12px rgba(212, 168, 83, 0.4);
}

.btn-credits {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.3), rgba(16, 185, 129, 0.3));
  color: #E5E7EB;
  border: 1px solid rgba(52, 211, 153, 0.4);
  font-weight: 600;
}

.btn-credits:hover {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.5), rgba(16, 185, 129, 0.5));
  box-shadow: 0 4px 12px rgba(52, 211, 153, 0.4);
}

.btn-voice {
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.3), rgba(212, 168, 83, 0.3));
  color: #E5E7EB;
  border: 1px solid rgba(212, 168, 83, 0.4);
  font-weight: 600;
}

.btn-voice:hover {
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.5), rgba(212, 168, 83, 0.5));
  box-shadow: 0 4px 12px rgba(212, 168, 83, 0.4);
}

/* ═══════════════════════════════════════════════════════════════
   LOADING & EMPTY STATES
   ═══════════════════════════════════════════════════════════════ */

.dashboard-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: #64748b;
}

.dashboard-loading .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e2e8f0;
  border-top-color: #D4A853;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.dashboard-empty {
  text-align: center;
  padding: 40px 20px;
  color: #94a3b8;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

/* Tablet landscape and smaller desktops */
@media (max-width: 1024px) {
  .profit-summary {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
  }
  
  .profit-value {
    font-size: clamp(22px, 4vw, 32px);
  }
}

/* Tablet portrait */
@media (max-width: 768px) {
  .admin-dashboard {
    padding: 12px;
  }
  
  .dashboard-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .dashboard-header h1 {
    font-size: 22px;
  }
  
  .dashboard-actions {
    width: 100%;
    flex-direction: column;
  }
  
  .dashboard-actions button {
    width: 100%;
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .profit-summary {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .profit-card {
    padding: 16px;
  }
  
  .stat-card {
    padding: 16px;
  }
  
  .stat-card-value {
    font-size: 24px;
  }
  
  .members-table-v2 {
    font-size: 11px;
  }
  
  .members-table-v2 th,
  .members-table-v2 td {
    padding: 10px 8px;
  }
  
  .cost-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .admin-dashboard {
    padding: 8px;
  }
  
  .dashboard-header h1 {
    font-size: 20px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .profit-summary {
    gap: 10px;
  }
  
  .profit-card {
    padding: 14px;
  }
  
  .profit-value {
    font-size: 28px;
  }
  
  .profit-label {
    font-size: 11px;
  }
  
  .stat-card {
    padding: 14px;
  }
  
  .stat-card-value {
    font-size: 22px;
  }
  
  .stat-card-label {
    font-size: 12px;
  }
  
  .members-table-v2 {
    font-size: 10px;
  }
  
  .members-table-v2 th,
  .members-table-v2 td {
    padding: 8px 6px;
  }
  
  .member-name {
    font-size: 13px;
  }
  
  .member-email {
    font-size: 10px;
  }
  
  .dashboard-actions button {
    padding: 8px 12px;
    font-size: 13px;
  }
}


