/**
 * Graph Editor - Forms & Modals
 * Padrao visual SIGMA-PLI (tema claro)
 */

/* ============================================
   MODALS
   ============================================ */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.modal.active,
.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--vw-surface, #ffffff);
  border-radius: var(--pli-radius-md, 8px);
  max-width: var(--sigma-modal-md);
  width: 90%;
  max-height: 85vh;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--vw-border, #e2e8f0);
  /* Prevenir escape de conteúdo */
  box-sizing: border-box;
}

.modal-content.modal-large {
  max-width: var(--sigma-modal-lg);
}

.modal-content.modal-small {
  max-width: var(--sigma-modal-sm);
}

/* Modal Header - padrão dicionário section-header */
.modal-header {
  height: 42px;
  padding: 0 14px;
  background: linear-gradient(
    135deg,
    var(--pli-deep, #003b5a),
    var(--pli-navy, #1c3d59)
  );
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.2s;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Modal Body */
.modal-body {
  padding: 24px;
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
  min-height: 0;
}

/* Modal Footer */
.modal-footer {
  padding: 16px 24px;
  background: var(--dashboard-panel-alt, var(--dashboard-panel-alt));
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
  border-top: 1px solid var(--dashboard-border);
  flex-wrap: wrap;
}

/* ---- Padronização de botões dentro dos modais ---- */
.modal-footer button {
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-family);
  min-width: 110px;
  white-space: nowrap;
  line-height: 1.4;
}

.modal-footer button i {
  font-size: 13px;
}

/* Salvar (btn-success) */
.modal-footer .btn-success {
  background: linear-gradient(135deg, #1a8a3e, #15692f);
  color: white;
  box-shadow: 0 2px 8px rgba(26, 138, 62, 0.25);
}

.modal-footer .btn-success:hover {
  background: linear-gradient(135deg, #22a84b, #1a8a3e);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26, 138, 62, 0.35);
}

/* Excluir (btn-danger) */
.modal-footer .btn-danger {
  background: linear-gradient(135deg, #c0392b, #96281b);
  color: white;
  box-shadow: 0 2px 8px rgba(192, 57, 43, 0.25);
}

.modal-footer .btn-danger:hover {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(192, 57, 43, 0.35);
}

/* Cancelar (btn-secondary) */
.modal-footer .btn-secondary {
  background: var(--pli-gray-bg, #f0f0f1);
  border: 1px solid var(--vw-border, #e2e8f0) !important;
  color: var(--vw-text-muted, #64748b);
}

.modal-footer .btn-secondary:hover {
  background: var(--vw-border, #e2e8f0);
  color: var(--vw-text, #1e293b);
  transform: translateY(-1px);
}

/* Confirmar Sim (confirm modal) */
#confirm-modal .modal-footer .btn-danger {
  min-width: 100px;
}

#confirm-modal .modal-footer .btn-secondary {
  min-width: 100px;
}

/* Active state */
.modal-footer button:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--dashboard-text, var(--dashboard-text));
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--dashboard-border);
  border-radius: 6px;
  font-size: var(--font-size-sm);
  font-family: var(--font-family);
  background: var(--dashboard-panel-alt, var(--dashboard-panel-alt));
  color: var(--dashboard-text, var(--dashboard-text));
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--dashboard-accent);
  box-shadow: 0 0 0 3px rgba(44, 143, 255, 0.15);
}

.form-control[readonly] {
  background: var(--pli-gray-bg, #f0f0f1);
  cursor: not-allowed;
  color: var(--vw-text-muted, #64748b);
}

.form-control::placeholder {
  color: var(--dashboard-muted);
}

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

select.form-control {
  cursor: pointer;
}

select.form-control option {
  background: var(--dashboard-panel);
  color: var(--dashboard-text);
}

/* Custom edge type hint */
.form-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--vw-text-muted, #64748b);
  opacity: 0.85;
}

.form-hint i {
  margin-right: 4px;
}

#custom-edge-type-group {
  display: none;
}

#custom-edge-type-group.active {
  display: block;
  animation: fadeSlideIn 0.25s ease;
}

#input-import-file {
  display: none;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   PROPERTIES CONTAINER
   ============================================ */
.properties-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  background: var(--pli-gray-bg, #f0f0f1);
  border-radius: var(--pli-radius-md, 8px);
  border: 1px solid var(--vw-border, #e2e8f0);
  max-height: 400px;
  overflow-y: auto;
}

.property-field {
  display: grid;
  grid-template-columns: 150px 1fr 40px;
  gap: 10px;
  align-items: start;
}

.property-field label {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--dashboard-text);
  padding-top: 10px;
}

.property-field input,
.property-field textarea,
.property-field select {
  padding: 8px 12px;
  border: 1px solid var(--dashboard-border);
  border-radius: 6px;
  font-size: var(--font-size-xs);
  background: var(--dashboard-panel-alt, var(--dashboard-panel-alt));
  color: var(--dashboard-text);
  font-family: var(--font-family);
}

.property-field input:focus,
.property-field textarea:focus,
.property-field select:focus {
  outline: none;
  border-color: var(--dashboard-accent);
  box-shadow: 0 0 0 2px rgba(44, 143, 255, 0.15);
}

.property-field input::placeholder,
.property-field textarea::placeholder {
  color: var(--dashboard-muted);
}

.btn-remove-property {
  background: none;
  border: none;
  color: #dc2626;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s;
}

.btn-remove-property:hover {
  background: rgba(220, 38, 38, 0.1);
}

.btn-add-property {
  background: transparent;
  border: 1px dashed var(--dashboard-border);
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: var(--font-size-xs);
  color: var(--dashboard-accent);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-family);
}

.btn-add-property:hover {
  background: rgba(44, 143, 255, 0.08);
  border-color: var(--dashboard-accent);
}

/* ============================================
   FORM VALIDATION
   ============================================ */
.form-control.error {
  border-color: #dc2626;
}

.field-error {
  color: #dc2626;
  font-size: var(--font-size-xs);
  margin-top: 4px;
  display: block;
}

.field-hint {
  color: var(--dashboard-muted);
  font-size: var(--font-size-xs);
  margin-top: 4px;
  display: block;
}

/* ============================================
   CHECKBOX/RADIO
   ============================================ */
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--dashboard-accent);
}

.form-check label {
  margin: 0;
  font-weight: normal;
  cursor: pointer;
  color: var(--dashboard-text);
}

/* ============================================
   CONFIRMATION MODAL
   ============================================ */
#confirm-modal .modal-body {
  text-align: center;
  padding: 32px 24px;
}

#confirm-message {
  font-size: var(--font-size-base);
  color: var(--dashboard-text);
  line-height: 1.6;
}

/* ============================================
   ICON INPUTS
   ============================================ */
.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dashboard-muted);
}

.input-with-icon input {
  padding-left: 38px;
}

/* ============================================
   LOADING SPINNER
   ============================================ */
.form-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: var(--dashboard-muted);
}

.form-loading i {
  font-size: 32px;
}

/* ============================================
   ALERTS (in-form messages)
   ============================================ */
.alert {
  padding: 12px 16px;
  border-radius: var(--pli-radius-md, 8px);
  margin-bottom: 20px;
  font-size: var(--font-size-sm);
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-success {
  background: rgba(74, 222, 128, 0.1);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.alert-error {
  background: rgba(248, 113, 113, 0.1);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.2);
}

.alert-warning {
  background: rgba(243, 156, 18, 0.1);
  color: var(--sigma-warning);
  border: 1px solid rgba(243, 156, 18, 0.2);
}

.alert-info {
  background: rgba(44, 143, 255, 0.1);
  color: var(--dashboard-accent);
  border: 1px solid rgba(44, 143, 255, 0.2);
}

/* ============================================
   SCROLLBAR (properties area)
   ============================================ */
.properties-container::-webkit-scrollbar {
  width: 8px;
}

.properties-container::-webkit-scrollbar-track {
  background: transparent;
}

.properties-container::-webkit-scrollbar-thumb {
  background: rgba(28, 61, 89, 0.2);
  border-radius: 4px;
}

.properties-container::-webkit-scrollbar-thumb:hover {
  background: rgba(28, 61, 89, 0.35);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-height: 90vh;
  }

  .property-field {
    grid-template-columns: 1fr;
  }

  .property-field label {
    padding-top: 0;
  }

  .modal-footer {
    flex-direction: column-reverse;
    padding: 14px 16px;
  }

  .modal-footer button {
    width: 100%;
    min-width: unset;
  }
}

/* ============================================
   BATCH RELATIONSHIP MODAL
   ============================================ */

.batch-info-text {
  background: rgba(17, 101, 147, 0.06);
  border: 1px solid rgba(17, 101, 147, 0.15);
  border-radius: var(--border-radius);
  padding: 12px 16px;
  margin-bottom: 16px;
  color: var(--vw-text-muted, #64748b);
  font-size: 0.9rem;
  line-height: 1.5;
}

.batch-info-text i {
  color: var(--dashboard-accent, var(--pli-blue));
  margin-right: 6px;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .form-row-2col {
    grid-template-columns: 1fr;
  }
}

.input-with-preview {
  display: flex;
  align-items: center;
  gap: 10px;
}

.input-with-preview input {
  flex: 1;
}

.type-preview {
  font-family: "Courier New", Courier, monospace;
  font-weight: bold;
  color: #16a34a;
  white-space: nowrap;
  font-size: 0.95rem;
  min-width: 100px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--vw-text, #1e293b);
  font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--dashboard-accent, var(--pli-blue));
}

/* Validation Results */
.batch-validation-result {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--vw-border, #e2e8f0);
}

.validation-loading {
  text-align: center;
  padding: 20px;
  color: var(--vw-text-muted, #64748b);
}

.validation-error {
  padding: 12px 16px;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: var(--border-radius);
  color: #dc2626;
}

.validation-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.v-card {
  background: var(--vw-surface, #ffffff);
  border: 1px solid var(--vw-border, #e2e8f0);
  border-radius: var(--pli-radius-md, 8px);
  padding: 12px 18px;
  text-align: center;
  min-width: 80px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.v-card-val {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dashboard-accent, var(--pli-blue));
}

.v-card-lbl {
  display: block;
  font-size: 0.78rem;
  color: var(--vw-text-muted, #64748b);
  margin-top: 2px;
}

.v-card-arrow {
  background: none;
  border: none;
  padding: 0;
  min-width: 30px;
  color: var(--vw-text-muted, #64748b);
  font-size: 1.1rem;
}

.v-card-total {
  background: var(--vw-surface, #ffffff);
  border-color: var(--vw-border, #e2e8f0);
}

.v-card-total .v-card-val {
  color: #16a34a;
}

.validation-type {
  text-align: center;
  margin-bottom: 12px;
  color: var(--vw-text, #1e293b);
}

.validation-type code {
  background: var(--pli-gray-bg, #f0f0f1);
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid var(--vw-border, #e2e8f0);
}

.validation-alert {
  padding: 12px 16px;
  border-radius: var(--border-radius);
  margin-bottom: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.alert-success {
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.2);
  color: #16a34a;
}

.alert-danger {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.2);
  color: #dc2626;
}

.alert-warning {
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid rgba(217, 119, 6, 0.2);
  color: #d97706;
}

.validation-details {
  margin-top: 8px;
  color: var(--vw-text-muted, #64748b);
  font-size: 0.85rem;
}

.validation-details summary {
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 6px;
}

.validation-details ul {
  list-style: none;
  padding: 0;
  margin: 4px 0 0 0;
}

.validation-details li {
  padding: 3px 0;
}

.validation-details code {
  background: var(--pli-gray-bg, #f0f0f1);
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 0.85rem;
}

/* ============================================
   PROGRESS MODAL (3 níveis)
   ============================================ */

.batch-progress-header {
  background: linear-gradient(
    135deg,
    var(--sigma-primary, #116593),
    var(--sigma-secondary, #1c3d59)
  );
}

.batch-progress-body {
  padding: 0 !important;
}

.progress-level {
  padding: 14px 20px;
  border-bottom: 1px solid var(--vw-border, #e2e8f0);
}

.progress-level:last-of-type {
  border-bottom: none;
}

.progress-level-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.progress-level-title {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--vw-text, #1e293b);
}

.progress-level-title i {
  margin-right: 6px;
  color: var(--pli-blue, #116593);
}

.progress-counter {
  font-family: "Courier New", monospace;
  font-size: 0.85rem;
  color: var(--vw-text-muted, #64748b);
}

/* Progress bars */
.progress-bar-wrapper {
  background: var(--pli-gray-bg, #f0f0f1);
  border-radius: 10px;
  height: 20px;
  overflow: hidden;
  position: relative;
}

.progress-bar-wrapper.progress-bar-small {
  height: 12px;
}

.progress-bar {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--pli-blue), #26d97f);
  transition: width 0.3s ease;
  position: relative;
}

.progress-bar.progress-bar-task {
  background: linear-gradient(90deg, #6c5ce7, #a29bfe);
}

/* Stats row */
.progress-stats-row {
  display: flex;
  gap: 20px;
  margin-top: 8px;
  font-size: 0.82rem;
}

.stat-created {
  color: #16a34a;
}

.stat-skipped {
  color: #d97706;
}

.stat-errors {
  color: #dc2626;
}

.progress-stats-row i {
  margin-right: 4px;
}

/* Task label */
.progress-task-label {
  font-size: 0.84rem;
  color: var(--vw-text-muted, #64748b);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Subtask list */
.progress-subtask-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.subtask-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 0.82rem;
  color: var(--vw-text-muted, #64748b);
}

.subtask-icon {
  width: 14px;
  text-align: center;
  font-size: 0.7rem;
}

.subtask-icon.pending {
  color: rgba(28, 61, 89, 0.25);
}

.subtask-icon.active {
  color: var(--pli-blue, #116593);
}

.subtask-icon.done {
  color: #16a34a;
}

.subtask-icon.skip {
  color: #d97706;
}

.subtask-icon.error {
  color: #dc2626;
}

/* Log section */
.progress-log-section {
  padding: 10px 20px 14px;
  border-top: 1px solid var(--vw-border, #e2e8f0);
}

.progress-log {
  max-height: 160px;
  overflow-y: auto;
  font-size: 0.78rem;
  font-family: "Courier New", monospace;
  background: var(--pli-gray-bg, #f0f0f1);
  border-radius: var(--border-radius);
  padding: 8px 10px;
  border: 1px solid var(--vw-border, #e2e8f0);
}

.progress-log.collapsed {
  max-height: 0;
  padding: 0 10px;
  overflow: hidden;
}

.log-entry {
  padding: 2px 0;
  border-bottom: 1px solid var(--vw-border, #e2e8f0);
  word-break: break-all;
}

.log-entry i {
  margin-right: 6px;
  width: 14px;
  text-align: center;
}

.log-info {
  color: var(--vw-text-muted, #64748b);
}
.log-success {
  color: #16a34a;
}
.log-warning {
  color: #d97706;
}
.log-error {
  color: #dc2626;
}
.log-skip {
  color: #d97706;
}

.btn-tiny {
  background: transparent;
  border: 1px solid var(--vw-border, #e2e8f0);
  color: var(--vw-text-muted, #64748b);
  border-radius: 4px;
  padding: 2px 8px;
  cursor: pointer;
  font-size: 0.75rem;
}

.btn-tiny:hover {
  background: var(--pli-gray-bg, #f0f0f1);
}

/* Progress log scrollbar */
.progress-log::-webkit-scrollbar {
  width: 6px;
}

.progress-log::-webkit-scrollbar-track {
  background: transparent;
}

.progress-log::-webkit-scrollbar-thumb {
  background: rgba(28, 61, 89, 0.2);
  border-radius: 3px;
}

/* === Initial hidden states (JS toggles) === */
#batch-custom-type-group,
#batch-validation-result,
#batch-progress-footer {
  display: none;
}

/* === Progress bar initial width === */
#progress-overall-bar,
#progress-task-bar {
  width: 0%;
}

/* ============================================
   MODAL MEDIUM
   ============================================ */
.modal-content.modal-medium {
  max-width: 560px;
}

/* ============================================
   MODAL HINT
   ============================================ */
.modal-hint {
  background: #eef6ff;
  border: 1px solid #c6dfff;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: var(--font-size-xs);
  color: #1a5276;
  margin-bottom: 16px;
  line-height: 1.5;
}

.modal-hint i {
  color: var(--pli-blue, #116593);
  margin-right: 6px;
}

/* ============================================
   MODAL INFO AREAS (vertex/edge)
   ============================================ */
.vertex-modal-info,
.edge-modal-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px;
  background: var(--pli-gray-bg, #f0f0f1);
  border-radius: 6px;
  border: 1px solid var(--vw-border, #e2e8f0);
}

.vertex-modal-info .form-group,
.edge-modal-info .form-group {
  margin-bottom: 0;
}

.vertex-modal-info .form-group label,
.edge-modal-info .form-group label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--vw-text-muted, #64748b);
  margin-bottom: 4px;
}

/* ============================================
   VISIBILITY MODE (checkboxes + read-only values)
   ============================================ */
.properties-visibility-mode {
  gap: 0;
  padding: 0;
  background: transparent;
  border: 1px solid var(--vw-border, #e2e8f0);
  border-radius: 6px;
  overflow: hidden;
}

.visibility-property-row {
  display: grid;
  grid-template-columns: 32px 160px 1fr;
  align-items: center;
  padding: 8px 14px;
  border-bottom: 1px solid var(--vw-border, #e2e8f0);
  transition: background 0.15s;
}

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

.visibility-property-row:hover {
  background: #f7faff;
}

.visibility-checkbox {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--pli-blue, #116593);
}

.visibility-prop-name {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--vw-text, #1e293b);
}

.visibility-prop-value {
  font-size: var(--font-size-xs);
  color: var(--vw-text-muted, #64748b);
  font-family: "Monaco", "Courier New", monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.empty-properties {
  text-align: center;
  padding: 24px 16px;
  color: var(--vw-text-muted, #64748b);
  font-size: var(--font-size-sm);
}

.empty-properties i {
  margin-right: 6px;
}

.loading-text {
  text-align: center;
  padding: 24px 16px;
  color: var(--vw-text-muted, #64748b);
  font-size: var(--font-size-sm);
}

.loading-text i {
  margin-right: 6px;
}
