/* Admin Dashboard Styles */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --success: #16a34a;
  --danger: #dc2626;
  --warning: #ca8a04;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --sidebar-width: 250px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background: var(--gray-50);
  color: var(--gray-800);
  line-height: 1.5;
}

/* Login */
.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--gray-100);
}

.login-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.login-header {
  text-align: center;
  margin-bottom: 32px;
}

.login-header h1 {
  font-size: var(--font-h4);
  line-height: var(--lh-h4);
  font-weight: 700;
  margin-bottom: 8px;
}

.login-header p {
  color: var(--gray-500);
  font-size: var(--font-body-2);
  line-height: var(--lh-body-2);
}

/* Form Elements */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: var(--font-body-2);
  line-height: var(--lh-body-2);
  color: var(--gray-700);
}

.form-input, .form-select {
  width: 100%;
  padding: 10px 12px;
  font-size: var(--font-body-2);
  line-height: var(--lh-body-2);
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-input:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input-sm {
  padding: 8px 10px;
  font-size: 0.875rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: var(--font-body-2);
  line-height: var(--lh-body-2);
  font-weight: 500;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: var(--gray-100);
  color: var(--gray-700);
}

.btn-secondary:hover {
  background: var(--gray-200);
}

.btn-success {
  background: var(--success);
  color: var(--white);
}

.btn-danger {
  background: var(--danger);
  color: var(--white);
}

.btn-sm {
  padding: 6px 12px;
  font-size: var(--font-body-3);
  line-height: var(--lh-body-3);
}

/* Tablet suggestion banner — inserted before admin layout to push content down */
.tablet-suggestion-banner {
  background: #1d4ed8;
  color: #fff;
  padding: 10px 16px;
  text-align: center;
  font-size: 14px;
  z-index: 9999;
}
.tablet-suggestion-banner a { color: #fff; text-decoration: underline; font-weight: 600; }
.tablet-suggestion-banner button { background: none; border: none; color: #fff; font-size: 20px; cursor: pointer; margin-left: 12px; vertical-align: middle; min-width: 44px; min-height: 44px; }

.btn-lg {
  padding: 12px 24px;
  font-size: var(--font-body-2);
  line-height: var(--lh-body-2);
}

.btn-block {
  width: 100%;
}

/* Error/Success Messages */
.alert {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: var(--font-body-2);
  line-height: var(--lh-body-2);
}

.alert-error {
  background: #fee2e2;
  color: var(--danger);
  border: 1px solid #fecaca;
}

.alert-success {
  background: #dcfce7;
  color: var(--success);
  border: 1px solid #bbf7d0;
}

/* Admin Layout */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: var(--sidebar-width);
  background: var(--gray-900);
  color: var(--white);
  position: fixed;
  height: 100vh;
  overflow-y: auto;
}

.sidebar-header {
  padding: 20px;
  border-bottom: 1px solid var(--gray-700);
}

.sidebar-logo {
  font-size: var(--font-body-1);
  line-height: var(--lh-body-1);
  font-weight: 700;
}

.sidebar-nav {
  padding: 12px 0;
}

.nav-section {
  padding: 8px 16px;
  font-size: var(--font-body-3);
  line-height: var(--lh-body-3);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 16px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--gray-300);
  text-decoration: none;
  font-size: var(--font-body-2);
  line-height: var(--lh-body-2);
  transition: all 0.2s;
  cursor: pointer;
}

.nav-item:hover {
  background: var(--gray-800);
  color: var(--white);
}

.nav-item.active {
  background: var(--primary);
  color: var(--white);
}

.nav-icon {
  width: 20px;
  text-align: center;
}

/* Main Content */
.main-content {
  flex: 1;
  margin-left: var(--sidebar-width);
}

.top-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.page-title {
  font-size: var(--font-h5);
  line-height: var(--lh-h5);
  font-weight: 600;
}

.user-menu {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--font-body-2);
  line-height: var(--lh-body-2);
}

.page-content {
  padding: 24px;
}

/* Dashboard Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.stat-card {
  background: var(--white);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.stat-label {
  font-size: var(--font-body-2);
  line-height: var(--lh-body-2);
  color: var(--gray-500);
  margin-bottom: 4px;
}

.stat-value {
  font-size: var(--font-h4);
  line-height: var(--lh-h4);
  font-weight: 700;
  color: var(--gray-900);
}

.stat-change {
  font-size: var(--font-body-3);
  line-height: var(--lh-body-3);
  margin-top: 4px;
}

.stat-change.positive {
  color: var(--success);
}

.stat-change.negative {
  color: var(--danger);
}

/* Cards */
.card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-title {
  font-size: var(--font-body-2);
  line-height: var(--lh-body-2);
  font-weight: 600;
}

.card-body {
  padding: 20px;
}

/* Tables */
.table-container {
  overflow-x: auto;
}

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

.table th,
.table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
}

.table th {
  font-weight: 600;
  font-size: var(--font-body-3);
  line-height: var(--lh-body-3);
  text-transform: uppercase;
  color: var(--gray-500);
  background: var(--gray-50);
}

.table tr:hover {
  background: var(--gray-50);
}

.table-actions {
  display: flex;
  gap: 8px;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: var(--font-body-3);
  line-height: var(--lh-body-3);
  font-weight: 500;
  border-radius: 20px;
}

.badge-success {
  background: #dcfce7;
  color: var(--success);
}

.badge-warning {
  background: #fef3c7;
  color: var(--warning);
}

.badge-danger {
  background: #fee2e2;
  color: var(--danger);
}

.badge-info {
  background: #dbeafe;
  color: var(--primary);
}

/* Member Avatar */
.member-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--font-body-2);
  line-height: var(--lh-body-2);
  color: var(--gray-600);
}

.member-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.member-name {
  font-weight: 500;
}

.member-email {
  font-size: var(--font-body-3);
  line-height: var(--lh-body-3);
  color: var(--gray-500);
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal {
  background: var(--white);
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(-20px);
  transition: transform 0.2s ease;
}

/* Stripe Elements iframe needs explicit stacking in modal context */
#card-element {
  position: relative;
  z-index: 1;
  min-height: 24px;
}

.modal-overlay.show .modal {
  transform: translateY(0);
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: var(--font-body-1);
  line-height: var(--lh-body-1);
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  font-size: var(--font-h4);
  color: var(--gray-400);
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--gray-600);
}

.modal-body {
  padding: 20px;
}

.modal-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* Search & Filters */
.toolbar {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.search-input {
  flex: 1;
  min-width: 200px;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 40px;
  color: var(--gray-500);
}

.empty-state-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.5;
}

/* Loading */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Responsive */
@media (max-width: 991.98px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s;
    z-index: 200;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .toolbar {
    flex-direction: column;
  }

  .search-input {
    width: 100%;
  }
}

/* Toggle Switch */
.toggle-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.toggle-switch {
  appearance: none;
  -webkit-appearance: none;
  width: 48px;
  height: 26px;
  background: var(--gray-300);
  border-radius: 26px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.toggle-switch::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.toggle-switch:checked {
  background: var(--primary);
}

.toggle-switch:checked::before {
  transform: translateX(22px);
}

.toggle-switch:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.toggle-text {
  font-size: var(--font-body-2);
  line-height: var(--lh-body-2);
  color: var(--gray-700);
}

/* Package Form Layout */
.package-form-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  padding-bottom: 100px;
}

.package-form-layout .form-column {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.package-form-layout .preview-column {
  position: sticky;
  top: 20px;
  align-self: start;
}

.pricing-preview {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pricing-preview h3 {
  font-size: var(--font-body-2);
  line-height: var(--lh-body-2);
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}

.pricing-line {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: var(--font-body-2);
  line-height: var(--lh-body-2);
}

.pricing-line.total {
  font-weight: 600;
  font-size: var(--font-body-2);
  line-height: var(--lh-body-2);
  border-top: 2px solid var(--gray-200);
  margin-top: 8px;
  padding-top: 12px;
}

.pricing-line.highlight {
  background: var(--gray-50);
  margin: 0 -16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--primary);
}

.pricing-line .label {
  color: var(--gray-600);
}

.pricing-line .value {
  color: var(--gray-800);
}

.pricing-line .value.discount {
  color: var(--success);
}

.pricing-section {
  margin-bottom: 20px;
}

.pricing-section:last-child {
  margin-bottom: 0;
}

.pricing-section-title {
  font-size: var(--font-body-3);
  line-height: var(--lh-body-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  margin-bottom: 8px;
}

/* Payment Schedule List */
.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--gray-50);
  border-radius: 8px;
}

.schedule-item.first {
  background: var(--primary-light, #e3f2fd);
  border: 1px solid var(--primary);
}

.schedule-number {
  min-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-200);
  border-radius: 50%;
  font-size: var(--font-body-3);
  line-height: var(--lh-body-3);
  font-weight: 600;
  color: var(--gray-600);
}

.schedule-item.first .schedule-number {
  background: var(--primary);
  color: white;
}

.schedule-details {
  flex: 1;
}

.schedule-desc {
  font-weight: 500;
  font-size: var(--font-body-2);
  line-height: var(--lh-body-2);
}

.schedule-date {
  font-size: var(--font-body-3);
  line-height: var(--lh-body-3);
  color: var(--gray-500);
}

.schedule-amount {
  font-weight: 600;
  font-size: var(--font-body-2);
  line-height: var(--lh-body-2);
}

/* Payment date editing toolbar */
.schedule-toolbar {
  padding: 8px 16px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.schedule-toolbar-check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-body-3);
  line-height: var(--lh-body-3);
  cursor: pointer;
}

.schedule-toolbar-divider {
  color: var(--gray-300);
}

.schedule-toolbar-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.schedule-toolbar-label {
  font-size: var(--font-body-3);
  line-height: var(--lh-body-3);
}

.schedule-toolbar-input {
  height: 28px;
  font-size: var(--font-body-3);
  line-height: var(--lh-body-3);
  padding: 2px 6px;
}

.payment-date-checkbox {
  cursor: pointer;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.payment-date-input {
  max-width: 150px;
  font-size: var(--font-body-3);
  line-height: var(--lh-body-3);
  padding: 2px 6px;
  margin-top: 2px;
}

/* Sticky Footer */
.sticky-footer {
  position: fixed;
  bottom: 0;
  left: var(--sidebar-width);
  right: 0;
  padding: 16px 24px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.sticky-footer .footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-footer .footer-right {
  display: flex;
  gap: 12px;
}

/* Page Header with Back Link */
.page-header-with-back {
  margin-bottom: 24px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-500);
  text-decoration: none;
  font-size: var(--font-body-2);
  line-height: var(--lh-body-2);
  margin-bottom: 8px;
}

.back-link:hover {
  color: var(--primary);
}

.page-header-with-back h1 {
  font-size: var(--font-h4);
  line-height: var(--lh-h4);
  font-weight: 600;
  color: var(--gray-800);
}

/* Form Section Divider */
.form-section-title {
  font-size: var(--font-body-3);
  line-height: var(--lh-body-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  margin: 24px 0 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.form-section-title:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* Responsive: Stack columns on smaller screens */
@media (max-width: 767.98px) {
  .package-form-layout {
    grid-template-columns: 1fr;
  }

  .package-form-layout .preview-column {
    position: static;
    order: -1;
  }

  .sticky-footer {
    left: 0;
  }
}

/* ========================================
   Attendance Schedule View
   ======================================== */

/* Day tabs row */
.day-tabs {
  display: flex;
  gap: 4px;
}

.day-tab {
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid var(--gray-200);
  background: white;
  font-weight: 500;
  font-size: var(--font-body-2);
  transition: all 0.2s;
}

.day-tab:hover {
  background: var(--gray-50);
}

.day-tab.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.day-tab.today:not(.active) {
  border-color: var(--primary);
  color: var(--primary);
}

/* Week navigation */
.week-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.week-nav-label {
  font-weight: 600;
  font-size: var(--font-body-1);
  min-width: 180px;
  text-align: center;
}

/* Class cards */
.class-card {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  background: white;
}

.class-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.class-card-name {
  font-weight: 600;
  font-size: var(--font-body-1);
  margin-right: 12px;
}

.class-card-time {
  color: var(--gray-500);
  font-size: var(--font-body-3);
}

.class-card-count {
  font-size: var(--font-body-3);
  color: var(--gray-500);
  white-space: nowrap;
}

.class-card-members {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.checkin-member-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 4px 4px;
  background: var(--gray-50);
  border-radius: 20px;
  font-size: var(--font-body-3);
}

/* Check-in modal search results */
.checkin-search-results {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  margin-top: 8px;
}

.checkin-member-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  cursor: pointer;
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.15s;
}

.checkin-member-item:last-child {
  border-bottom: none;
}

.checkin-member-item:hover {
  background: var(--gray-50);
}

.checkin-member-item.selected {
  background: #eff6ff;
  border-color: var(--primary);
}

/* ========================================
   POS 2-Column Layout
   ======================================== */

.pos-catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  align-content: start;
}

.pos-product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pos-product-card:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.12);
}

.pos-product-name {
  font-weight: 600;
  font-size: var(--font-body-2);
  margin-bottom: 4px;
}

.pos-product-price {
  color: var(--gray-500);
  font-size: var(--font-body-2);
}

.pos-cart-item {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
}

.pos-cart-item:last-child {
  border-bottom: none;
}

.pos-cart-column {
  display: flex;
  flex-direction: column;
}

/* Mobile responsive — attendance schedule */
@media (max-width: 575.98px) {
  .day-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
  }
  .day-tab {
    flex-shrink: 0;
    padding: 8px 12px;
    font-size: var(--font-body-3);
  }
  .week-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  .week-nav-label {
    min-width: auto;
    order: -1;
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
  }
  .class-card-members {
    flex-direction: column;
  }
  .class-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* Portal invite table — responsive */
@media (max-width: 767.98px) {
  .portal-invite-col-members {
    display: none;
  }
}
