/* ==========================================================================
   Screen-Specific Wireframe Components & Complete Cycle Stepper Styles
   ========================================================================== */

/* -------------------------------------------------------------
   Interactive Complete Cycle Stepper Header Banner
   ------------------------------------------------------------- */
.cycle-stepper-banner {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-bottom: 2px solid #2563eb;
  padding: 14px 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stepper-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stepper-status-badge {
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #38bdf8;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.stepper-info-box {
  display: flex;
  flex-direction: column;
}

.stepper-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stepper-stage-num {
  font-size: 13px;
  font-weight: 800;
  color: #38bdf8;
}

.stepper-stage-title {
  font-size: 16px;
  font-weight: 700;
  color: #f8fafc;
}

.stepper-stage-actor {
  font-size: 11px;
  background: #334155;
  color: #cbd5e1;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.stepper-stage-desc {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 2px;
}

.stepper-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stepper-btn {
  background: #334155;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.stepper-btn:hover {
  background: #475569;
}

.stepper-btn.primary {
  background: var(--brand-blue);
}

.stepper-btn.primary:hover {
  background: var(--brand-blue-hover);
}

/* 8-Dot Visual Cycle Progress Bar */
.cycle-progress-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cycle-progress-bar-bg {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.cycle-progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #10b981);
  width: 12.5%;
  transition: width 0.4s ease;
}

.cycle-dots-container {
  display: flex;
  gap: 8px;
}

.cycle-step-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1e293b;
  border: 2px solid #334155;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.cycle-step-dot:hover {
  border-color: #38bdf8;
  color: #fff;
}

.cycle-step-dot.active {
  background: var(--brand-blue);
  border-color: #38bdf8;
  color: #fff;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
  transform: scale(1.1);
}

.cycle-step-dot.completed {
  background: var(--accent-emerald);
  border-color: #34d399;
  color: #fff;
}

/* -------------------------------------------------------------
   Teacher Absence Makeup Notification Alert (Section 8.3)
   ------------------------------------------------------------- */
.makeup-alert-banner {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-left: 4px solid var(--brand-blue);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.makeup-alert-text h4 {
  font-size: 14px;
  color: #1e3a8a;
  margin-bottom: 3px;
}

.makeup-alert-text p {
  font-size: 12px;
  color: #3b82f6;
}

/* -------------------------------------------------------------
   Stats Grids, Cards & Packages
   ------------------------------------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.stat-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.stat-icon.blue { background: var(--brand-blue-light); color: var(--brand-blue); }
.stat-icon.emerald { background: var(--accent-emerald-light); color: var(--accent-emerald); }
.stat-icon.amber { background: var(--warning-amber-light); color: var(--warning-amber); }
.stat-icon.purple { background: #f5f3ff; color: #8b5cf6; }

.stat-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
}

.stat-info p {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Child Selector Tabs */
.child-tabs-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 12px;
  flex-wrap: wrap;
}

.child-tab-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--border-medium);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}

.child-tab-item:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

.child-tab-item.active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
}

.add-child-tab-btn {
  background: #f1f5f9;
  border: 1px dashed var(--border-medium);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-blue);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Package Marketplace Tiers */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.package-card {
  background: #ffffff;
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.package-card:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.package-card.featured {
  border-color: var(--brand-blue);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.package-badge-popular {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--brand-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-header h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.package-credits-badge {
  display: inline-block;
  background: var(--accent-emerald-light);
  color: #047857;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.package-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 16px;
}

.package-price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}

.package-features li {
  font-size: 12.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.package-features li::before {
  content: "✓";
  color: var(--accent-emerald);
  font-weight: 800;
}

/* Credentials Box */
.credentials-box {
  background: #f1f5f9;
  border: 1px dashed var(--border-medium);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.credentials-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cred-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.cred-value {
  font-family: monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-navy);
  background: #fff;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

/* Calendar & Timetable */
.timetable-container {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

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

.calendar-week-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.calendar-day-col {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  min-height: 260px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calendar-day-header {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-subtle);
}

.session-block-item {
  background: #ffffff;
  border-left: 4px solid var(--brand-blue);
  border-radius: var(--radius-sm);
  padding: 8px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}

.session-block-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.session-block-item.active-now {
  border-left-color: var(--accent-emerald);
  background: #f0fdf4;
  animation: pulseGlow 2s infinite;
}

.session-time {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
}

.session-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-navy);
}

.session-instructor {
  font-size: 11px;
  color: var(--text-muted);
}

/* Live Session Banner */
.live-session-launchpad {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.launchpad-info h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 6px;
}

.launchpad-info p {
  color: #94a3b8;
  font-size: 13px;
}

.launchpad-timer-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.timer-digits {
  font-family: 'Outfit', monospace;
  font-size: 32px;
  font-weight: 800;
  color: #38bdf8;
  background: rgba(15, 23, 42, 0.6);
  padding: 6px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.btn-launch-zoom {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
  transition: var(--transition);
}

.btn-launch-zoom:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.6);
}

/* Availability Matrix Table */
.availability-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.availability-table th, .availability-table td {
  padding: 10px 14px;
  font-size: 12px;
  text-align: center;
  border: 1px solid var(--border-subtle);
}

.availability-table th {
  background: #f1f5f9;
  font-weight: 700;
  color: var(--primary-navy);
}

.slot-toggle-cell {
  cursor: pointer;
  transition: var(--transition);
}

.slot-toggle-cell.available {
  background: var(--accent-emerald-light);
  color: #047857;
  font-weight: 700;
}

.slot-toggle-cell:hover {
  background: #e2e8f0;
}

/* Table Container */
.data-table-container {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.lms-table th {
  background: #f8fafc;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-subtle);
}

.lms-table td {
  padding: 14px 18px;
  font-size: 13px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--primary-navy);
}

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

.lms-table tr:hover td {
  background: #f8fafc;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
}

.status-badge.amber { background: var(--warning-amber-light); color: #b45309; }
.status-badge.emerald { background: var(--accent-emerald-light); color: #047857; }
.status-badge.rose { background: var(--danger-rose-light); color: var(--danger-rose); }
.status-badge.blue { background: var(--brand-blue-light); color: var(--brand-blue); }

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ==========================================================================
   Device-Frame Scoped Responsive Overrides (Mobile 375px / Tablet 768px)
   ========================================================================== */

/* --- MOBILE DEVICE FRAME --- */

/* Cycle Stepper Banner */
.device-frame.mobile .cycle-stepper-banner {
  padding: 10px 12px;
  gap: 8px;
}

.device-frame.mobile .stepper-header-row {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.device-frame.mobile .stepper-title-wrap {
  flex-wrap: wrap;
  gap: 6px;
}

.device-frame.mobile .stepper-stage-title {
  font-size: 14px;
}

.device-frame.mobile .stepper-stage-desc {
  font-size: 11px;
}

.device-frame.mobile .stepper-controls {
  width: 100%;
  justify-content: space-between;
}

.device-frame.mobile .stepper-btn {
  flex: 1;
  justify-content: center;
  padding: 6px 8px;
  font-size: 11px;
}

.device-frame.mobile .cycle-progress-wrap {
  flex-direction: column;
  gap: 8px;
}

.device-frame.mobile .cycle-dots-container {
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.device-frame.mobile .cycle-step-dot {
  width: 22px;
  height: 22px;
  font-size: 9px;
}

/* Stats Grid */
.device-frame.mobile .stats-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}

.device-frame.mobile .stat-card {
  padding: 14px;
  gap: 12px;
}

.device-frame.mobile .stat-icon {
  width: 38px;
  height: 38px;
  font-size: 16px;
}

.device-frame.mobile .stat-info h4 {
  font-size: 17px;
}

/* Calendar Week Grid */
.device-frame.mobile .calendar-week-grid {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 10px;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.device-frame.mobile .calendar-day-col {
  min-width: 160px;
  flex-shrink: 0;
  min-height: 200px;
}

/* Timetable Container */
.device-frame.mobile .timetable-container {
  padding: 12px;
  overflow-x: auto;
}

.device-frame.mobile .timetable-header {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

/* Live Session Launchpad */
.device-frame.mobile .live-session-launchpad {
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  gap: 16px;
  padding: 16px;
}

.device-frame.mobile .launchpad-timer-box {
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.device-frame.mobile .timer-digits {
  font-size: 24px;
  padding: 4px 10px;
}

.device-frame.mobile .btn-launch-zoom {
  width: 100%;
  justify-content: center;
  padding: 10px 16px;
  font-size: 14px;
}

/* Tables Horizontal Scroll */
.device-frame.mobile .data-table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.device-frame.mobile .lms-table {
  min-width: 600px;
}

.device-frame.mobile .lms-table th,
.device-frame.mobile .lms-table td {
  padding: 10px 12px;
  font-size: 11px;
  white-space: nowrap;
}

.device-frame.mobile .availability-table {
  min-width: 650px;
}

.device-frame.mobile .availability-table th,
.device-frame.mobile .availability-table td {
  padding: 7px 8px;
  font-size: 11px;
}

/* Packages Grid */
.device-frame.mobile .packages-grid {
  grid-template-columns: 1fr;
  gap: 16px;
}

.device-frame.mobile .package-card {
  padding: 18px;
}

.device-frame.mobile .package-price {
  font-size: 24px;
}

/* Child Tabs */
.device-frame.mobile .child-tabs-bar {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  flex-wrap: nowrap;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.device-frame.mobile .child-tab-item {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 12px;
  padding: 6px 12px;
}

/* Credentials Box */
.device-frame.mobile .credentials-row {
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

/* Makeup Alert */
.device-frame.mobile .makeup-alert-banner {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
}

/* --- TABLET DEVICE FRAME --- */

.device-frame.tablet .cycle-stepper-banner {
  padding: 12px 16px;
}

.device-frame.tablet .stepper-header-row {
  flex-wrap: wrap;
  gap: 10px;
}

.device-frame.tablet .stepper-stage-title {
  font-size: 15px;
}

.device-frame.tablet .cycle-dots-container {
  gap: 6px;
}

.device-frame.tablet .cycle-step-dot {
  width: 22px;
  height: 22px;
  font-size: 9px;
}

.device-frame.tablet .stats-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.device-frame.tablet .calendar-week-grid {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 10px;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.device-frame.tablet .calendar-day-col {
  min-width: 140px;
  flex-shrink: 0;
  min-height: 220px;
}

.device-frame.tablet .timetable-container {
  overflow-x: auto;
}

.device-frame.tablet .live-session-launchpad {
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px;
}

.device-frame.tablet .data-table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.device-frame.tablet .lms-table {
  min-width: 550px;
}

.device-frame.tablet .availability-table {
  min-width: 600px;
}

.device-frame.tablet .packages-grid {
  grid-template-columns: repeat(2, 1fr);
}

.device-frame.tablet .package-price {
  font-size: 24px;
}

/* ==========================================================================
   Global Responsive Breakpoints for wireframes.css
   ========================================================================== */

@media (max-width: 992px) {
  .cycle-stepper-banner {
    padding: 10px 14px;
  }

  .stepper-header-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .calendar-week-grid {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding-bottom: 8px;
  }

  .calendar-day-col {
    min-width: 150px;
    flex-shrink: 0;
  }

  .data-table-container,
  .timetable-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .lms-table {
    min-width: 560px;
  }

  .availability-table {
    min-width: 600px;
  }
}

@media (max-width: 768px) {
  .cycle-stepper-banner {
    padding: 10px 12px;
    gap: 8px;
  }

  .stepper-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .stepper-stage-title {
    font-size: 14px;
  }

  .stepper-stage-desc {
    font-size: 11px;
  }

  .stepper-controls {
    width: 100%;
    justify-content: space-between;
  }

  .stepper-btn {
    flex: 1;
    justify-content: center;
    font-size: 11px;
  }

  .cycle-progress-wrap {
    flex-direction: column;
    gap: 8px;
  }

  .cycle-dots-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .cycle-step-dot {
    width: 22px;
    height: 22px;
    font-size: 9px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat-info h4 {
    font-size: 17px;
  }

  .calendar-week-grid {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding-bottom: 8px;
  }

  .calendar-day-col {
    min-width: 160px;
    flex-shrink: 0;
    min-height: 200px;
  }

  .timetable-container {
    padding: 12px;
    overflow-x: auto;
  }

  .timetable-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .live-session-launchpad {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 14px;
    padding: 16px;
  }

  .launchpad-timer-box {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .timer-digits {
    font-size: 24px;
  }

  .btn-launch-zoom {
    width: 100%;
    justify-content: center;
  }

  .data-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }

  .lms-table {
    min-width: 600px;
  }

  .lms-table th,
  .lms-table td {
    padding: 10px 12px;
    font-size: 12px;
  }

  .availability-table {
    min-width: 650px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .child-tabs-bar {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .child-tab-item {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 12px;
  }

  .makeup-alert-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
  }

  .credentials-row {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
}

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

  .stat-card {
    padding: 12px;
  }

  .session-block-item {
    padding: 6px;
  }

  .session-time {
    font-size: 9px;
  }

  .session-title {
    font-size: 11px;
  }
}

