/* Estilos para la página de reporte de incidentes */
/* /reportar-incidente */

/* Contenedor principal */
.wizard-page .wizard-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

/* Progress Bar Compacto */
.wizard-page .wizard-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  padding: 1rem 1.5rem;
  background: transparent;
  border-radius: 0;
  border: none;
}

.wizard-page .progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.wizard-page .step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-tertiary, #2a2a2a);
  border: 2px solid var(--border-color, #444);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-secondary, #999);
  transition: all 0.3s;
}

.wizard-page .progress-step.active .step-number {
  background: #dc2626;
  border-color: #dc2626;
  color: white;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.2);
}

.wizard-page .progress-step.completed .step-number {
  background: #10b981;
  border-color: #10b981;
  color: white;
}

.wizard-page .step-label {
  font-size: 0.8rem;
  color: var(--text-secondary, #999);
  font-weight: 500;
}

.wizard-page .progress-step.active .step-label {
  color: var(--text-primary, #fff);
  font-weight: 600;
}

.wizard-page .progress-line {
  height: 2px;
  width: 60px;
  background: var(--border-color, #444);
  margin: 0 0.5rem;
}

.wizard-page .progress-step.completed ~ .progress-line {
  background: #10b981;
}

/* Formulario compacto */
.wizard-page .wizard-form {
  background: var(--bg-secondary, #1a1a1a);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color, #333);
}

.wizard-page .wizard-step {
  display: none;
}

.wizard-page .wizard-step.active {
  display: block;
  animation: fadeIn 0.3s;
}

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

.wizard-page .step-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color, #333);
}

.wizard-page .step-header h2 {
  font-size: 1.75rem;
  margin: 0 0 0.75rem;
  color: var(--text-primary, #fff);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.wizard-page .step-header p {
  color: var(--text-secondary, #999);
  font-size: 1rem;
  margin: 0;
}

.wizard-page .incident-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.wizard-page .incident-type-card {
  position: relative;
  cursor: pointer;
}

.wizard-page .incident-type-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.wizard-page .card-content {
  background: var(--bg-tertiary, #2a2a2a);
  border: 2px solid var(--border-color, #444);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
  transition: all 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wizard-page .incident-type-card:hover .card-content {
  border-color: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(220, 38, 38, 0.2);
}

.wizard-page .incident-type-card input:checked + .card-content {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(153, 27, 27, 0.1) 100%);
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

.wizard-page .card-content h3 {
  font-size: 1.125rem;
  margin: 0 0 0.625rem;
  color: var(--text-primary, #fff);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.wizard-page .card-content p {
  color: var(--text-secondary, #aaa);
  font-size: 0.875rem;
  margin: 0 0 1rem;
  line-height: 1.5;
  flex-grow: 1;
}

.wizard-page .card-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.wizard-page .card-badge.critical {
  background: rgba(220, 38, 38, 0.2);
  color: #dc2626;
}

.wizard-page .card-badge.high {
  background: rgba(249, 115, 22, 0.2);
  color: #f97316;
}

.wizard-page .card-badge.medium {
  background: rgba(234, 179, 8, 0.2);
  color: #eab308;
}

.wizard-page .form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.wizard-page .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.wizard-page .form-group.full-width {
  grid-column: 1 / -1;
}

.wizard-page .form-group label {
  font-weight: 600;
  color: var(--text-primary, #fff);
  font-size: 0.9375rem;
}

.wizard-page .form-group input,
.wizard-page .form-group select,
.wizard-page .form-group textarea {
  padding: 0.875rem 1rem;
  background: var(--bg-tertiary, #1e1e1e);
  border: 1.5px solid var(--border-color, #3a3a3a);
  border-radius: 8px;
  color: var(--text-primary, #fff);
  font-size: 0.9375rem;
  transition: all 0.2s;
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
}

.wizard-page .form-group input:focus,
.wizard-page .form-group select:focus,
.wizard-page .form-group textarea:focus {
  outline: none;
  border-color: #dc2626;
  background: var(--bg-tertiary, #252525);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.wizard-page .form-group small {
  color: var(--text-secondary, #999);
  font-size: 0.875rem;
}

.wizard-page .wizard-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-color, #333);
}

.wizard-page .step-indicator {
  color: var(--text-secondary, #999);
  font-weight: 500;
}

.wizard-page .btn-primary,
.wizard-page .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-size: 0.9375rem;
}

.wizard-page .btn-primary {
  background: #16a588;
  color: white;
}

.wizard-page .btn-primary:hover {
  background: #16a588;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(220, 38, 38, 0.3);
}

.wizard-page .btn-secondary {
  background: var(--bg-tertiary, #2a2a2a);
  color: var(--text-primary, #fff);
  border: 1px solid var(--border-color, #444);
}

/* Multi-Select Components */
.wizard-page .multi-select-wrapper {
  position: relative;
  width: 100%;
}

.wizard-page .multi-select-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 1rem;
  min-height: 56px;
  background: var(--bg-tertiary, #1e1e1e);
  border: 1.5px solid var(--border-color, #3a3a3a);
  border-radius: 8px;
  color: var(--text-primary, #fff);
  font-size: 0.9375rem;
  transition: all 0.2s;
  cursor: pointer;
  user-select: none;
}

.wizard-page .multi-select-header:hover {
  border-color: rgba(220, 38, 38, 0.5);
  background: var(--bg-tertiary, #222);
}

.wizard-page .multi-select-header.open {
  border-color: #dc2626;
  background: var(--bg-tertiary, #252525);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.wizard-page .multi-select-header .placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.wizard-page .multi-select-header .selected-count {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  background: rgba(220, 38, 38, 0.2);
  padding: 0.125rem 0.5rem;
  border-radius: 12px;
  border: 1px solid rgba(220, 38, 38, 0.3);
}

/* Contenedor de etiquetas seleccionadas dentro del header */
.wizard-page .multi-select-header .selected-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  align-items: center;
  max-height: none;
  overflow: visible;
  min-height: 1.5rem;
  flex: 1;
}

.wizard-page .multi-select-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(220, 38, 38, 0.15);
  color: #fff;
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 12px;
  padding: 0.25rem 0.625rem;
  font-size: 0.8125rem;
  line-height: 1.3;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}

.wizard-page .multi-select-tag:hover {
  background: rgba(220, 38, 38, 0.25);
  border-color: rgba(220, 38, 38, 0.45);
}

.wizard-page .multi-select-tag::after {
  content: '×';
  opacity: 0.75;
  font-weight: 600;
  margin-left: 0.25rem;
}

.wizard-page .multi-select-tag:hover::after {
  opacity: 1;
}

.wizard-page .multi-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-tertiary, #1e1e1e);
  border: 1.5px solid var(--border-color, #3a3a3a);
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.wizard-page .multi-select-dropdown::-webkit-scrollbar {
  width: 4px;
}

.wizard-page .multi-select-dropdown::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.wizard-page .multi-select-dropdown::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.wizard-page .multi-select-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid var(--border-color, #333);
  user-select: none;
}

.wizard-page .multi-select-option:last-child {
  border-bottom: none;
}

.wizard-page .multi-select-option:hover {
  background: var(--bg-quaternary, #222);
  border-left: 3px solid rgba(220, 38, 38, 0.5);
  padding-left: calc(1rem - 3px);
}

.wizard-page .multi-select-option.selected {
  background: rgba(220, 38, 38, 0.15);
  border-left: 3px solid #dc2626;
  padding-left: calc(1rem - 3px);
  color: var(--text-primary, #fff);
}

.wizard-page .multi-select-option input[type="checkbox"] {
  flex-shrink: 0;
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: #dc2626;
  cursor: pointer;
  pointer-events: none;
}

.wizard-page .multi-select-option .option-text {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-primary, #fff);
  pointer-events: none;
}

.wizard-page .btn-secondary:hover {
  background: var(--bg-quaternary, #333);
}

.wizard-page .form-summary {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.wizard-page .summary-section {
  background: var(--bg-tertiary, #1e1e1e);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #dc2626;
  border: 1px solid var(--border-color, #333);
  border-left: 4px solid #dc2626;
}

.wizard-page .summary-section h3 {
  margin: 0 0 1rem;
  color: var(--text-primary, #fff);
  font-size: 1.125rem;
  font-weight: 700;
}

.wizard-page .summary-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wizard-page .summary-section li {
  padding: 0.5rem 0;
  color: var(--text-secondary, #999);
}

.wizard-page .summary-section li strong {
  color: var(--text-primary, #fff);
}

.wizard-page .summary-section p {
  margin: 0.5rem 0;
  color: var(--text-secondary, #999);
}

.wizard-page .summary-section p strong {
  color: var(--text-primary, #fff);
}

.wizard-page .checkbox-label {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  cursor: pointer;
  color: var(--text-secondary, #999);
}

.wizard-page .checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
  width: auto;
}

.wizard-page .checkbox-label a {
  color: #dc2626;
  text-decoration: underline;
}

/* Multi-respuesta: grupos de casillas */
.wizard-page .checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem;
}

.wizard-page .checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  background: var(--bg-tertiary, #1e1e1e);
  border: 1.5px solid var(--border-color, #3a3a3a);
  border-radius: 8px;
  color: var(--text-primary, #fff);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.wizard-page .checkbox-item:hover {
  background: var(--bg-quaternary, #222);
  border-color: #dc2626;
}

.wizard-page .checkbox-item:focus-within {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.wizard-page .checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #dc2626;
}

.wizard-page .loading-state,
.wizard-page .success-state {
  text-align: center;
  padding: 4rem 2rem;
}

.wizard-page .loading-spinner {
  width: 64px;
  height: 64px;
  border: 4px solid var(--border-color, #444);
  border-top-color: #dc2626;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 2rem;
}

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

.wizard-page .success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.wizard-page .success-state h2 {
  color: var(--text-primary, #fff);
  margin-bottom: 1rem;
}

.wizard-page .success-state p {
  color: var(--text-secondary, #999);
  font-size: 1.1rem;
}

.wizard-page .ticket-info {
  background: var(--bg-tertiary, #2a2a2a);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.wizard-page .ticket-info strong {
  color: var(--text-primary, #fff);
}

.wizard-page .ticket-info code {
  font-size: 1.25rem;
  color: #dc2626;
  font-weight: 600;
}

.wizard-page .next-steps {
  text-align: left;
  max-width: 600px;
  margin: 2rem auto;
  background: var(--bg-tertiary, #2a2a2a);
  padding: 1.5rem;
  border-radius: 8px;
}

.wizard-page .next-steps h3 {
  color: var(--text-primary, #fff);
  margin-bottom: 1rem;
}

.wizard-page .next-steps ol {
  color: var(--text-secondary, #999);
}

.wizard-page .success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .wizard-page .wizard-progress {
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    gap: 0.25rem;
  }

  .wizard-page .progress-line {
    width: 30px;
    margin: 0 0.25rem;
  }

  .wizard-page .wizard-form {
    padding: 1.5rem;
  }
  
  .wizard-page .step-header h2 {
    font-size: 1.5rem;
  }

  .wizard-page .incident-types-grid {
    grid-template-columns: 1fr;
  }

  .wizard-page .form-grid {
    grid-template-columns: 1fr;
  }

  .wizard-page .wizard-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .wizard-page .step-indicator {
    order: -1;
  }

  .wizard-page .success-actions {
    flex-direction: column;
  }
}

/* Phone Input Group Styles */
.wizard-page .phone-input-group {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.wizard-page .country-code-select {
  flex: 0 0 120px;
  padding: 0.75rem 1rem;
  background: var(--bg-tertiary, #1e1e1e);
  border: 1px solid var(--border-color, #333);
  border-radius: 8px;
  color: var(--text-primary, #fff);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  appearance: none;
  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='%23999' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.wizard-page .country-code-select:hover {
  border-color: #dc2626;
  background-color: var(--bg-card, #111822);
}

.wizard-page .country-code-select:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.wizard-page .phone-number-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--bg-tertiary, #1e1e1e);
  border: 1px solid var(--border-color, #333);
  border-radius: 8px;
  color: var(--text-primary, #fff);
  font-size: 0.9375rem;
  transition: all 0.2s;
}

.wizard-page .phone-number-input:hover {
  border-color: #dc2626;
  background-color: var(--bg-card, #111822);
}

.wizard-page .phone-number-input:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Only show invalid state after user interaction */
.wizard-page .phone-number-input:not(:placeholder-shown):invalid,
.wizard-page .phone-number-input:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #f87171;
}

/* Also apply to other inputs */
.wizard-page .form-group input:not(:placeholder-shown):invalid,
.wizard-page .form-group input:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #f87171;
}

.wizard-page .phone-hint {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-secondary, #999);
}

@media (max-width: 768px) {
  .wizard-page .phone-input-group {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .wizard-page .country-code-select {
    flex: 1;
  }
}

/* Email Input Wrapper */
.wizard-page .email-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.wizard-page .email-input-wrapper input {
  flex: 1;
  padding-right: 2.5rem;
}

.wizard-page .email-validation-icon {
  position: absolute;
  right: 1rem;
  font-size: 1.25rem;
  font-weight: bold;
  pointer-events: none;
}

/* Field Hints */
.wizard-page .field-hint {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-secondary, #999);
  font-style: italic;
}

/* Channel Select with Icons */
.wizard-page .channel-select {
  font-size: 0.9375rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.wizard-page .channel-select option {
  padding: 0.5rem;
}

/* Icono dentro del select a la izquierda */
.wizard-page .channel-select.has-icon {
  /* Asegura que el fondo personalizado se renderice correctamente */
  background-color: var(--bg-tertiary, #1e1e1e);
  /* Usaremos un icono real a la izquierda, no fondo */
  background-image: none !important;
  background-repeat: no-repeat;
  background-position: right 0.75rem center; /* solo flecha derecha */
  background-size: 12px 12px;
  padding-left: 2.75rem; /* espacio para el icono */
  padding-right: 2rem; /* espacio para flecha */
}

/* Desactivar imágenes de fondo por canal: usaremos íconos Tabler reales */
.wizard-page .channel-select.has-icon.whatsapp,
.wizard-page .channel-select.has-icon.teams {
  background-image: none !important;
}

/* Channel selector row with logo */
.wizard-page .channel-select-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative; /* para posicionar el icono dentro del input */
}

/* Ícono Tabler a la izquierda del select */
.wizard-page .channel-select-row .channel-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--text-primary, #fff);
  position: absolute;
  left: 0.75rem; /* dentro del área del input */
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none; /* no interfiere con el select */
}

.wizard-page .channel-select-row.whatsapp .channel-icon.whatsapp,
.wizard-page .channel-select-row.teams .channel-icon.teams {
  display: inline-flex;
}

/* Selector personalizado de canal */
.wizard-page .channel-custom-select {
  position: relative;
  flex: 1;
}

.wizard-page .channel-trigger {
  width: 100%;
  height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-sans);
  color: var(--text-primary, #fff);
  background-color: var(--bg-tertiary, #1e1e1e);
  border: 1px solid var(--border-color, #333);
  border-radius: 8px;
  padding-left: 2.75rem; /* espacio para icono izquierdo */
  padding-right: 2rem; /* espacio para flecha */
  text-align: left;
  cursor: pointer;
  position: relative; /* para icono interno */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23bbb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px 12px;
}

/* Icono dentro del input (trigger) */
.wizard-page .channel-trigger .trigger-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  pointer-events: none;
}

.wizard-page .channel-select-row.whatsapp .channel-trigger .trigger-icon.whatsapp,
.wizard-page .channel-select-row.teams .channel-trigger .trigger-icon.teams {
  display: inline-flex;
}

.wizard-page .channel-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  background-color: var(--bg-tertiary, #1e1e1e);
  border: 1px solid var(--border-color, #333);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  z-index: 20;
  padding: 0.25rem 0;
  display: none;
}

.wizard-page .channel-custom-select.open .channel-options {
  display: block;
}

.wizard-page .channel-options .option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  padding: 0.5rem 0.75rem 0.5rem 2.75rem; /* espacio para icono a la izquierda */
  color: var(--text-primary, #fff);
  cursor: pointer;
}

.wizard-page .channel-options .option:hover {
  background-color: rgba(255,255,255,0.06);
}

.wizard-page .channel-options .option.selected {
  background-color: rgba(255,255,255,0.1);
}

.wizard-page .channel-options .option .option-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

/* DateTime Input Styling */
.wizard-page .datetime-input {
  font-family: var(--font-sans);
  color: var(--text-primary, #fff);
}

.wizard-page .datetime-input::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

/* Number Input Styling */
.wizard-page .number-input {
  text-align: right;
}

.wizard-page .number-input::-webkit-inner-spin-button,
.wizard-page .number-input::-webkit-outer-spin-button {
  opacity: 1;
}
