/* CSS khusus untuk Pendaftaran PPDB/SPMB Online */

.ppdb-section {
  padding: 3rem 0;
}

.ppdb-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Glassmorphism accent on card */
.ppdb-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-red), #e11d48, var(--accent-color));
}

.ppdb-title-wrapper {
  text-align: center;
  margin-bottom: 2.5rem;
}

.ppdb-title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 2rem;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.ppdb-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Auto-Save Indicator */
.auto-save-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  opacity: 0;
  transition: opacity 0.3s;
}
.auto-save-indicator.loaded {
  opacity: 1;
}
.auto-save-indicator.saved {
  color: #059669;
  background: #ecfdf5;
  border-color: #a7f3d0;
}
.auto-save-indicator.saved .fa {
  color: #059669;
}

/* Wizard Steps Progress */
.wizard-progress {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 3.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.wizard-progress::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 5%;
  right: 5%;
  height: 4px;
  background-color: var(--bg-tertiary);
  z-index: 1;
  border-radius: 2px;
  transition: var(--transition);
}

.wizard-progress-bar {
  position: absolute;
  top: 22px;
  left: 5%;
  width: 0%;
  height: 4px;
  background-color: var(--brand-red);
  z-index: 2;
  border-radius: 2px;
  transition: var(--transition);
}

.wizard-step-node {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20%;
  cursor: pointer;
}

.wizard-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-tertiary);
  border: 3px solid var(--bg-secondary);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.wizard-step-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 0.6rem;
  text-align: center;
  transition: var(--transition);
}

/* Wizard Active / Completed States */
.wizard-step-node.active .wizard-step-icon {
  background-color: var(--brand-red);
  color: #ffffff;
  border-color: var(--brand-red-light);
  transform: scale(1.12);
  box-shadow: 0 0 0 4px var(--brand-red-light);
}

.wizard-step-node.active .wizard-step-label {
  color: var(--brand-red);
}

.wizard-step-node.completed .wizard-step-icon {
  background-color: var(--text-secondary);
  color: #ffffff;
  border-color: var(--border-color);
}

.wizard-step-node.completed .wizard-step-label {
  color: var(--text-secondary);
}

/* Wizard Form Step Panels */
.wizard-panel {
  display: none;
  animation: fadeIn 0.4s ease-out;
}

.wizard-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-header {
  font-family: var(--font-sans);
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.panel-header i {
  color: var(--brand-red);
}

/* Form Fields */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group-3.full-width {
  grid-column: span 3;
}

label.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

label.form-label span.required {
  color: #ef4444;
  margin-left: 0.2rem;
}

.form-input, .form-select, .form-textarea {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: var(--transition);
  width: 100%;
  box-sizing: border-box;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px var(--brand-red-light);
  background-color: var(--bg-secondary);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Custom Checkbox/Radio Grid */
.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.8rem;
  margin-top: 0.3rem;
}

.option-card-wrapper {
  position: relative;
}

.option-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.option-card:hover {
  border-color: var(--brand-red);
  background-color: var(--brand-red-light);
}

.option-card input[type="radio"],
.option-card input[type="checkbox"] {
  accent-color: var(--brand-red);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.option-card span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Highlight active option card */
.option-card input:checked + span {
  color: var(--brand-red);
  font-weight: 700;
}

.option-card:has(input:checked) {
  border-color: var(--brand-red);
  background-color: var(--brand-red-light);
  box-shadow: 0 0 0 1px var(--brand-red);
}

/* File Upload Controls */
.file-upload-zone {
  border: 2px dashed var(--border-color);
  background-color: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.file-upload-zone:hover {
  border-color: var(--brand-red);
  background-color: var(--brand-red-light);
}

.file-upload-icon {
  font-size: 2rem;
  color: var(--brand-red);
  margin-bottom: 0.5rem;
}

.file-upload-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.file-upload-hint {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.file-upload-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-preview-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.6rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
}

.file-preview-icon {
  font-size: 1.2rem;
  color: var(--brand-red);
}

.file-preview-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-preview-remove {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  font-size: 1rem;
}

/* Signature Canvas Area */
.signature-container {
  border: 2px solid var(--border-color);
  background-color: var(--bg-tertiary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0.5rem 0;
}

.signature-canvas {
  display: block;
  background-color: #ffffff;
  width: 100%;
  height: 180px;
  cursor: crosshair;
}

.signature-actions {
  display: flex;
  justify-content: space-between;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
}

.signature-btn-clear {
  background: none;
  border: none;
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.signature-status {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Form Actions Button Bar */
.form-actions {
  display: flex;
  justify-content: space-between;
  border-top: 2px solid var(--border-color);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.btn {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-secondary {
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--border-color);
}

.btn-primary {
  background-color: var(--brand-red);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--brand-red-hover);
  box-shadow: 0 4px 6px rgba(13, 148, 136, 0.2);
}

.btn-success {
  background-color: var(--text-secondary);
  color: #ffffff;
}

.btn-success:hover {
  background-color: var(--text-primary);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Summary Verification Styles */
.summary-section-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand-red);
  text-transform: uppercase;
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 0.3rem;
}

.summary-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.summary-table tr {
  border-bottom: 1px solid var(--border-color);
}

.summary-table td {
  padding: 0.6rem 0.8rem;
  vertical-align: top;
}

.summary-table td.label-col {
  width: 35%;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-size: 0.75rem;
}

.summary-table td.value-col {
  color: var(--text-primary);
  font-weight: 500;
}

.summary-sig-img {
  max-width: 150px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: #ffffff;
}

/* Success Page Styling */
.success-card {
  text-align: center;
  padding: 3rem 2rem;
}

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--brand-red-light);
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 0 0 10px var(--bg-tertiary);
}

.success-reg-number {
  display: inline-block;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand-red);
  margin: 1rem 0;
  letter-spacing: 1px;
}

.success-instructions {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: left;
  margin: 2rem 0;
}

.success-instructions h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.success-instructions ol {
  padding-left: 1.2rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.success-instructions li {
  margin-bottom: 0.5rem;
}

/* Error/Alert Elements */
.alert-error-container {
  display: none;
  background-color: #fef2f2;
  border: 1px solid #fee2e2;
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.5rem;
  color: #991b1b;
  font-size: 0.8rem;
  font-weight: 600;
}

.alert-error-container.active {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.input-error-msg {
  color: #ef4444;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

.form-input.error, .form-select.error, .form-textarea.error {
  border-color: #f87171;
  background-color: #fffbeb;
}

/* Loading Overlay */
.loading-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 100;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

[data-theme="dark"] .loading-overlay {
  background-color: rgba(6, 78, 59, 0.85);
}

.loading-spinner {
  border: 4px solid var(--border-color);
  border-top: 4px solid var(--brand-red);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ppdb-card {
    padding: 1.5rem;
  }
  .wizard-progress {
    margin-bottom: 2rem;
  }
  .wizard-step-label {
    display: none; /* Hide labels on mobile to prevent clutter */
  }
  .wizard-step-node {
    width: auto;
  }
  .form-grid, .form-grid-3 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .form-group.full-width, .form-group-3.full-width {
    grid-column: span 1;
  }
  .form-actions {
    flex-direction: column-reverse;
    gap: 0.8rem;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ppdb-section {
    padding: 1.5rem 0;
  }
  .ppdb-card {
    padding: 1.2rem;
    border-radius: var(--radius-md);
  }
  .ppdb-title {
    font-size: 1.2rem;
    line-height: 1.3;
  }
  .ppdb-subtitle {
    font-size: 0.8rem;
  }
  .panel-header {
    font-size: 1.1rem;
    padding-bottom: 0.4rem;
    margin-bottom: 1rem;
  }
  .wizard-step-icon {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }
  .form-input, .form-select, .form-textarea {
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
  }
  label.form-label {
    font-size: 0.8rem;
  }
  .option-card span {
    font-size: 0.8rem;
  }
  .btn {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }
}

@media (max-width: 360px) {
  .ppdb-title {
    font-size: 1.05rem;
    line-height: 1.3;
  }
  .ppdb-subtitle {
    font-size: 0.75rem;
  }
  .panel-header {
    font-size: 1rem;
  }
  .wizard-step-icon {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
  .form-input, .form-select, .form-textarea {
    font-size: 0.8rem;
  }
  label.form-label {
    font-size: 0.75rem;
  }
  .option-card {
    padding: 0.6rem 0.8rem;
  }
  .option-card span {
    font-size: 0.75rem;
  }
}

/* PRINT MEDIA STYLING */
@media print {
  /* Hide all web components */
  .top-bar, .main-header, .navbar, .wizard-progress, .form-actions, .footer, .btn, .signature-actions, .file-upload-zone, .success-instructions, .success-icon-wrapper {
    display: none !important;
  }
  
  /* Reset body wrapper to default print layout */
  body {
    background-color: #ffffff !important;
    color: #000000 !important;
    font-size: 12pt !important;
    line-height: 1.5 !important;
  }
  
  .ppdb-section {
    padding: 0 !important;
  }
  
  .ppdb-card {
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
  
  /* Document print header */
  .print-only-header {
    display: block !important;
    text-align: center;
    border-bottom: 3px double #000000;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .print-logo {
    width: 60px;
    height: 60px;
    float: left;
    margin-right: -60px;
  }
  
  .print-header-text h2 {
    font-size: 14pt;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
  }
  
  .print-header-text h3 {
    font-size: 16pt;
    font-weight: bold;
    margin: 2px 0;
    text-transform: uppercase;
  }
  
  .print-header-text p {
    font-size: 9pt;
    margin: 0;
  }
  
  /* Print Wizard panels */
  .wizard-panel {
    display: block !important; /* Force all panels to display for printing */
    page-break-inside: avoid;
  }
  
  .panel-header {
    font-size: 11pt !important;
    border-bottom: 1px solid #000000 !important;
    margin-top: 1.5rem !important;
    margin-bottom: 0.8rem !important;
  }
  
  .form-grid, .form-grid-3 {
    display: block !important;
  }
  
  .form-group {
    margin-bottom: 0.6rem;
    display: block !important;
  }
  
  /* Replace inputs with neat printed blank fields or values */
  .form-input, .form-select, .form-textarea {
    border: none !important;
    border-bottom: 1px dotted #000000 !important;
    border-radius: 0 !important;
    padding: 2px 0 !important;
    background-color: transparent !important;
    color: #000000 !important;
    display: inline-block !important;
    width: auto !important;
  }
  
  /* Summary print tables */
  .summary-table-print {
    display: table !important;
    width: 100% !important;
  }
  
  .summary-table tr {
    border-bottom: 1px solid #dddddd !important;
  }
  
  .summary-table td.label-col {
    color: #000000 !important;
    font-weight: bold !important;
  }
  
  /* Signatures in print */
  .print-signature-block {
    display: flex !important;
    justify-content: space-between;
    margin-top: 3rem;
    page-break-inside: avoid;
  }
  
  .print-signature-col {
    text-align: center;
    width: 40%;
  }
  
  .print-signature-space {
    height: 80px;
  }
  
  .print-signature-line {
    border-bottom: 1px solid #000000;
    margin-top: 10px;
    font-weight: bold;
  }
}

/* ══════════════════════════════════════════
   SECTION DIVIDER — Pemisah antar sub-bagian
   ══════════════════════════════════════════ */
.section-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 2rem 0 1.25rem;
}

.section-divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-color));
  border-radius: 1px;
}

.section-divider:last-child .section-divider-line,
.section-divider .section-divider-line:first-child {
  background: linear-gradient(90deg, var(--border-color), transparent);
}

.section-divider-label {
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  background-color: var(--bg-secondary);
  padding: 0.3rem 0.85rem;
  border: 1.5px solid var(--border-color);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.section-divider-label i {
  color: var(--brand-red);
  font-size: 0.8rem;
}

/* ══════════════════════════════════════════
   ADDRESS INFO CARD — Info alamat tetap
   ══════════════════════════════════════════ */
.address-info-card {
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--brand-red);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  margin-bottom: 0.5rem;
}

.address-info-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.address-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 120px;
}

.address-info-fixed {
  position: relative;
}

.address-info-fixed::after {
  content: '🔒';
  font-size: 0.65rem;
  position: absolute;
  top: 0;
  right: 0;
}

.address-info-tag {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.address-info-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ══════════════════════════════════════════
   WELFARE CARD — Kartu kesejahteraan
   ══════════════════════════════════════════ */
.welfare-card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.welfare-card {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.welfare-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.welfare-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.35rem;
  background-color: var(--bg-tertiary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1rem 0.5rem;
  transition: all 0.2s ease;
  min-height: 90px;
}

.welfare-card:hover .welfare-card-inner {
  border-color: var(--brand-red);
  background-color: var(--brand-red-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.welfare-card input:checked ~ .welfare-card-inner {
  border-color: var(--brand-red);
  background: linear-gradient(135deg, var(--brand-red-light), var(--bg-secondary));
  box-shadow: 0 0 0 2px var(--brand-red), var(--shadow-md);
}

.welfare-card-icon {
  font-size: 1.4rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.welfare-card:hover .welfare-card-icon,
.welfare-card input:checked ~ .welfare-card-inner .welfare-card-icon {
  color: var(--brand-red);
}

.welfare-card-name {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.03em;
}

.welfare-card-desc {
  font-size: 0.65rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ── Responsive welfare card ── */
@media (max-width: 900px) {
  .welfare-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .welfare-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .address-info-row {
    flex-direction: column;
    gap: 0.6rem;
  }
  .address-info-item {
    min-width: unset;
  }
  .section-divider-label {
    font-size: 0.68rem;
    padding: 0.25rem 0.65rem;
  }
}
