/* ========== CLASSROOM WIZARD ========== */
.form-box--classroom-wizard {
  max-width: 860px;
}

.wizard-advanced-rules {
  margin: 0.75rem 0 1.25rem;
}

.wizard-advanced-rules .advanced-settings-group {
  margin-bottom: 1rem;
}

.wizard-header {
  margin-bottom: 30px;
}

.wizard-title {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  color: var(--color-text);
  margin-bottom: 15px;
}

.wizard-mode-subtitle {
  margin: -0.35rem 0 0;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.45;
}

.wizard-mode-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 120px;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.wizard-mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.25rem 0 1rem;
}

/* Author display rules override the native [hidden] attribute without this. */
#classroom-wizard .wizard-mode-loading[hidden],
#classroom-wizard .wizard-mode-grid[hidden],
#classroom-wizard .wizard-mode-badge[hidden],
#classroom-wizard .wizard-mode-advanced[hidden] {
  display: none !important;
}

.wizard-mode-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  text-align: left;
  padding: 1.35rem 1.25rem 1.2rem;
  border-radius: 16px;
  border: 2px solid var(--color-border, #e5e7eb);
  background: var(--color-surface);
  color: var(--color-text);
  cursor: pointer;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease, background 0.2s ease;
  overflow: hidden;
}

.wizard-mode-card:hover {
  transform: translateY(-2px);
}

.wizard-mode-card--progressive {
  background:
    radial-gradient(circle at 100% 0%, rgba(124, 115, 255, 0.16), transparent 55%),
    var(--color-surface);
}

.wizard-mode-card--progressive:hover,
.wizard-mode-card--progressive.is-selected {
  border-color: #7c73ff;
  box-shadow: 0 10px 28px rgba(124, 115, 255, 0.22);
}

.wizard-mode-card--standard {
  background:
    radial-gradient(circle at 100% 0%, rgba(16, 185, 129, 0.14), transparent 55%),
    var(--color-surface);
}

.wizard-mode-card--standard:hover,
.wizard-mode-card--standard.is-selected {
  border-color: #10b981;
  box-shadow: 0 10px 28px rgba(16, 185, 129, 0.2);
}

.wizard-mode-card.is-selected {
  transform: translateY(-2px);
}

.wizard-mode-card.is-selected::after {
  content: '';
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9.5 16.5 5 12l1.4-1.4 3.1 3.1L17.6 5.6 19 7z'/%3E%3C/svg%3E") center / 0.85rem no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9.5 16.5 5 12l1.4-1.4 3.1 3.1L17.6 5.6 19 7z'/%3E%3C/svg%3E") center / 0.85rem no-repeat;
}

.wizard-mode-card--progressive.is-selected::after {
  color: #7c73ff;
  background: #7c73ff;
  -webkit-mask: none;
  mask: none;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  content: '✓';
  font-size: 0.85rem;
}

.wizard-mode-card--standard.is-selected::after {
  -webkit-mask: none;
  mask: none;
  display: grid;
  place-items: center;
  background: #10b981;
  color: #fff;
  content: '✓';
  font-size: 0.85rem;
  font-weight: 700;
}

.wizard-mode-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: #f59e0b;
  color: #1f2937;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
}

.wizard-mode-icon {
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  margin-top: 1.1rem;
  border-radius: 14px;
  font-size: 1.35rem;
}

.wizard-mode-card--progressive .wizard-mode-icon {
  background: rgba(124, 115, 255, 0.16);
  color: #7c73ff;
}

.wizard-mode-card--standard .wizard-mode-icon {
  background: rgba(16, 185, 129, 0.16);
  color: #059669;
}

.wizard-mode-name {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.wizard-mode-tagline {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.wizard-mode-points {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  width: 100%;
}

.wizard-mode-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.86rem;
  line-height: 1.35;
  color: var(--color-text);
}

.wizard-mode-points li i {
  margin-top: 0.15rem;
  width: 1rem;
  text-align: center;
  flex-shrink: 0;
}

.wizard-mode-card--progressive .wizard-mode-points li i {
  color: #7c73ff;
}

.wizard-mode-card--standard .wizard-mode-points li i {
  color: #10b981;
}

.wizard-mode-advanced {
  margin: 0.25rem 0 0.5rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.35);
  background: rgba(16, 185, 129, 0.08);
}

.wizard-mode-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.wizard-mode-chip:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.wizard-mode-chip--progressive {
  background: rgba(124, 115, 255, 0.12);
  border-color: rgba(124, 115, 255, 0.35);
  color: #5b52d6;
}

.wizard-mode-chip--standard {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
  color: #047857;
}

.wizard-mode-chip-edit {
  margin-left: 0.15rem;
  padding-left: 0.5rem;
  border-left: 1px solid currentColor;
  opacity: 0.75;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

@media (max-width: 720px) {
  .wizard-mode-grid {
    grid-template-columns: 1fr;
  }
}

.wizard-progress {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.progress-step {
  flex: 1;
  min-width: 100px;
  padding: 10px;
  background: var(--color-background-alt);
  border-radius: 6px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #999;
  transition: all 0.3s ease;
}

.progress-step.active {
  background: #7C73FF;
  color: white;
}

/* Toggle Switch - Complete Redesign */
.toggle-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.toggle-switch {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  width: fit-content;
  height: 26px;
}

.toggle-switch input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 48px;
  height: 26px;
  background-color: #d1d5db;
  border: none;
  border-radius: 13px;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

.toggle-switch input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: white;
  top: 2px;
  left: 2px;
  transition: left 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.toggle-switch input[type="checkbox"]:checked {
  background-color: #10b981;
}

.toggle-switch input[type="checkbox"]:checked::before {
  left: 24px;
}

.toggle-label-text {
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  user-select: none;
  font-size: 15px;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

.toggle-hint {
  font-size: 12px;
  color: #999;
  margin-left: 0;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.feature-card {
  padding: 18px;
  background: var(--color-surface);
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.feature-card:hover {
  border-color: #7C73FF;
  box-shadow: 0 4px 12px rgba(124, 115, 255, 0.15);
  transform: translateY(-2px);
}

.feature-card.active {
  background: #7C73FF;
  border-color: #7C73FF;
  color: white;
}

.feature-icon {
  font-size: 28px;
  color: #7C73FF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card.active .feature-icon {
  color: white;
}

.feature-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text);
  font-family: 'Open Sans', sans-serif;
}

.feature-card.active .feature-name {
  color: white;
}

.feature-desc {
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.feature-card.active .feature-desc {
  color: rgba(255, 255, 255, 0.95);
}

/* Phase 3 - Students */
.phase3-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.phase3-tabs {
  display: flex;
  gap: 10px;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 20px;
}

.tab-btn {
  padding: 12px 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  color: #999;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.tab-btn.active {
  color: #7C73FF;
  border-bottom-color: #7C73FF;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.csv-instructions {
  background: var(--color-background-alt);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.wizard-appearance-choice {
  margin-top: 1.1rem;
  padding: 1.1rem 1.15rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(14, 165, 233, 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(56, 189, 248, 0.22), transparent 55%),
    linear-gradient(135deg, rgba(224, 242, 254, 0.95) 0%, rgba(239, 246, 255, 0.98) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.wizard-appearance-heading {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.wizard-appearance-icon {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
  flex-shrink: 0;
  background: rgba(14, 165, 233, 0.16);
  color: #0284c7;
  font-size: 1.1rem;
}

.wizard-appearance-title {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  color: #0c4a6e;
}

.wizard-appearance-hint {
  margin: 0;
  color: #0369a1;
  font-size: 0.86rem;
  line-height: 1.35;
}

.wizard-appearance-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.wizard-appearance-option {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 0.8rem;
  border-radius: 12px;
  border: 1.5px solid rgba(14, 165, 233, 0.2);
  background: rgba(255, 255, 255, 0.78);
  margin: 0;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.wizard-appearance-option:hover {
  border-color: rgba(14, 165, 233, 0.45);
  background: #fff;
}

.wizard-appearance-option.is-selected {
  border-color: #0ea5e9;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.14);
}

.wizard-appearance-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.wizard-appearance-option-icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9px;
  flex-shrink: 0;
  background: rgba(14, 165, 233, 0.12);
  color: #0284c7;
  font-size: 0.95rem;
}

.wizard-appearance-option.is-selected .wizard-appearance-option-icon {
  background: rgba(14, 165, 233, 0.2);
  color: #0369a1;
}

.wizard-appearance-option-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.wizard-appearance-option-copy strong {
  font-size: 0.88rem;
  line-height: 1.3;
  color: var(--color-text);
}

.wizard-appearance-option-hint {
  color: var(--color-text-secondary);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.3;
}

@media (max-width: 640px) {
  .wizard-appearance-options {
    grid-template-columns: 1fr;
  }
}

.students-list {
  background: var(--color-surface);
  border-radius: 8px;
  padding: 20px;
  border: 2px solid var(--color-border);
}

.students-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.student-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: var(--color-background-alt);
  border-radius: 6px;
}

.student-info {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.student-name {
  font-weight: 600;
  color: var(--color-text);
}

#classroom-wizard .student-class {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: capitalize;
}

/* Phase 4 - Teams */
.phase4-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.team-controls-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 15px;
  background: var(--color-surface);
  border-radius: 8px;
  border: 2px solid var(--color-border);
}

.control-group {
  display: flex;
  gap: 10px;
}

.team-stats {
  font-weight: 600;
  color: #7C73FF;
}

.team-organization {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: var(--color-background-alt);
  border-radius: 8px;
  padding: 15px;
  max-height: 70vh;
  overflow-y: auto;
}

.team-column {
  background: var(--color-surface);
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px;
  flex: 0 0 auto;
  min-width: 150px;
  max-width: 200px;
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 15px;
  vertical-align: top;
  min-height: 100px;
}

.unassigned-column {
  background: color-mix(in srgb, #ef4444 12%, var(--color-background-alt));
  border: 2px dashed #ef4444;
  min-height: 120px;
}

.column-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-border);
}

.column-header h4 {
  margin: 0;
  font-size: 14px;
  color: var(--color-text);
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  flex: 1;
}

.column-count {
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
}

.team-name-input {
  flex: 1;
  padding: 6px 8px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  min-width: 0;
}

.wizard-team-emblem-btn {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  padding: 4px;
  border-radius: 8px;
  border: 2px solid rgba(124, 115, 255, 0.35);
  background: var(--color-surface);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #6366f1;
}

.wizard-team-emblem-btn:hover {
  border-color: #6366f1;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.12);
}

.wizard-team-emblem-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wizard-emblem-clear-btn {
  border: none;
  background: none;
  color: #6366f1;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
}

.wizard-emblem-clear-btn:hover:not(:disabled) {
  color: #4338ca;
  text-decoration: underline;
}

.wizard-emblem-clear-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.wizard-emblem-picker-modal {
  max-width: 560px;
  width: 100%;
}

.wizard-emblem-picker-modal .modal-header h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wizard-emblem-picker-preview {
  width: 96px;
  height: 96px;
  margin: 0 auto 14px;
  border-radius: 16px;
  border: 2px solid rgba(124, 115, 255, 0.28);
  background: rgba(124, 115, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #6366f1;
  font-size: 2rem;
}

.wizard-emblem-picker-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wizard-emblem-picker-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #4338ca;
}

.wizard-emblem-empty {
  margin: 0 0 8px;
  font-size: 12px;
  color: var(--color-text-secondary);
}

.wizard-emblem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(44px, 1fr));
  gap: 6px;
  max-height: 140px;
  overflow-y: auto;
}

.wizard-emblem-grid--modal {
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 10px;
  max-height: min(52vh, 360px);
}

.wizard-emblem-item {
  aspect-ratio: 1;
  padding: 3px;
  border-radius: 8px;
  border: 2px solid transparent;
  background: var(--color-surface);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wizard-emblem-item:hover {
  border-color: rgba(99, 102, 241, 0.45);
}

.wizard-emblem-item.selected {
  border-color: #6366f1;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

.wizard-emblem-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.wizard-emblem-item.wizard-emblem-upload {
  flex-direction: column;
  gap: 4px;
  border-style: dashed;
  border-color: rgba(124, 115, 255, 0.45);
  color: #6366f1;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  background: rgba(124, 115, 255, 0.06);
}

.wizard-emblem-item.wizard-emblem-upload i {
  font-size: 18px;
}

.wizard-emblem-item.wizard-emblem-upload:hover {
  border-color: #7C73FF;
  background: rgba(124, 115, 255, 0.12);
}

.wizard-team-delete-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 28px;
  padding: 4px 6px;
  border-radius: 6px;
  border: 1px solid rgba(239, 68, 68, 0.35);
  background: rgba(254, 242, 242, 0.9);
  color: #b91c1c;
  flex-shrink: 0;
}

.wizard-team-delete-btn:hover {
  background: rgba(254, 226, 226, 1);
  border-color: rgba(239, 68, 68, 0.55);
}

.wizard-team-delete-btn i {
  font-size: 12px;
  line-height: 1;
}

.student-pool {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 60px;
  padding: 8px;
  background: var(--color-background-alt);
  border-radius: 4px;
  align-content: flex-start;
}

.student-badge {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 16px;
  color: white;
  font-weight: 600;
  font-size: 11px;
  cursor: grab;
  user-select: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  height: fit-content;
}

.student-badge:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.student-badge:active {
  cursor: grabbing;
}

.teams-grid {
  display: inline-flex;
  gap: 15px;
  flex-wrap: wrap;
  align-content: flex-start;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .team-organization {
    overflow-x: auto;
    overflow-y: visible;
  }
}

/* ========== WIZARD HELPER CLASSES ========== */

/* Feature selection title */
.wizard-feature-title {
  margin-bottom: 30px;
  font-family: 'Cinzel', serif;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 600;
}

.wizard-feature-subtitle {
  margin: 24px 0 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Helper text for student classes */
.wizard-helper-text {
  font-size: 12px;
  color: #999;
  margin-top: 10px;
}

/* Form buttons with full width */
.wizard-btn-full {
  width: 100%;
}

/* Download CSV button */
.wizard-csv-btn {
  width: 100%;
  margin-top: 10px;
}

/* Students count header */
.wizard-students-header {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 14px;
}

/* No students placeholder */
.wizard-empty-placeholder {
  text-align: center;
  color: #999;
  padding: 20px;
  font-size: 14px;
}

/* Compact button for teams */
.wizard-btn-compact {
  padding: 10px 15px;
  font-size: 14px;
}

/* Student class badge */
.student-class-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: white;
}

/* Wizard form submit */
.wizard-form-submit {
  width: 100%;
}
