/* line 1, app/assets/stylesheets/components/_flash.scss */
.flash {
  position: fixed;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-s);
  max-width: 100%;
  width: max-content;
  padding: 0 var(--space-m);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

/* line 19, app/assets/stylesheets/components/_flash.scss */
.flash__message {
  font-size: var(--font-size-s);
  color: var(--color-white);
  padding: var(--space-xs) var(--space-m);
  background-color: var(--color-secondary-rotate);
  animation: appear-then-fade 4s both;
  border-radius: 999px;
}

/* line 28, app/assets/stylesheets/components/_flash.scss */
.flash .alert-info {
  background-color: #4299E1;
  color: white;
}

/* line 33, app/assets/stylesheets/components/_flash.scss */
.flash .alert-success {
  background-color: #48BB78;
  color: white;
}

/* line 38, app/assets/stylesheets/components/_flash.scss */
.flash .alert-danger {
  background-color: #F56565;
  color: white;
}

/* line 43, app/assets/stylesheets/components/_flash.scss */
.flash .alert-warning {
  background-color: #ED8936;
  color: white;
}

/* line 1, app/assets/stylesheets/components/_rangeslider.scss */
body {
  margin: 2rem;
}

/* line 1, app/assets/stylesheets/components/_empty_state.scss */
.empty-state {
  padding: var(--space-m);
  border: var(--border);
  border-style: dashed;
  text-align: center;
}

/* line 7, app/assets/stylesheets/components/_empty_state.scss */
.empty-state__text {
  font-size: var(--font-size-l);
  color: var(--color-text-header);
  margin-bottom: var(--space-l);
  font-weight: bold;
}

/* line 14, app/assets/stylesheets/components/_empty_state.scss */
.empty-state--only-child {
  display: none;
}

/* line 17, app/assets/stylesheets/components/_empty_state.scss */
.empty-state--only-child:only-child {
  display: revert;
}

/* line 1, app/assets/stylesheets/components/_error_message.scss */
.error-message {
  width: 100%;
  color: var(--color-primary);
  background-color: var(--color-primary-bg);
  padding: var(--space-xs);
  border-radius: var(--border-radius);
}

/* line 1, app/assets/stylesheets/components/_congress.scss */
.progress-container {
  width: 100%;
  background-color: #f3f3f3;
  /* Change this to your desired color */
  border: 1px solid #ddd;
  /* Change this to your desired color */
  border-radius: 4px;
  /* Optional: to give the progress bar rounded corners */
  padding: 3px;
}

/* line 9, app/assets/stylesheets/components/_congress.scss */
.progress {
  background-color: #6875F5;
  /* Change this to your desired color */
  height: 1rem;
  transition: width 0.6s ease;
  border-radius: 2px;
  /* Optional: to give the filled portion rounded corners */
}

/* line 1, app/assets/stylesheets/components/_pagy_nav.scss */
.pagy-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: #6B7280;
}

/* line 12, app/assets/stylesheets/components/_pagy_nav.scss */
.pagy-nav a:not(.gap), .pagy-nav span.page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  text-decoration: none;
  color: #4B5563;
  background-color: #F9FAFB;
  border: 1px solid #E5E7EB;
  transition: all 0.2s ease;
}

/* line 25, app/assets/stylesheets/components/_pagy_nav.scss */
.pagy-nav a:not(.gap):hover, .pagy-nav span.page:hover {
  background-color: #FFFBEB;
  border-color: #FDE68A;
  color: #92400E;
}

/* line 31, app/assets/stylesheets/components/_pagy_nav.scss */
.pagy-nav a:not(.gap):not([href]), .pagy-nav span.page:not([href]) {
  color: #9CA3AF;
  cursor: default;
  background-color: #F3F4F6;
  border-color: #E5E7EB;
  opacity: 0.7;
}

/* line 39, app/assets/stylesheets/components/_pagy_nav.scss */
.pagy-nav a.current:not(.gap), .pagy-nav span.page.current {
  background-color: #F59E0B;
  border-color: #D97706;
  color: #FFFFFF;
}

/* line 47, app/assets/stylesheets/components/_pagy_nav.scss */
.pagy-nav span.page:hover {
  background-color: #FEF3C7;
  border-color: #FDE68A;
  color: #92400E;
}

/* line 53, app/assets/stylesheets/components/_pagy_nav.scss */
.pagy-nav span.page:not([href]) {
  background-color: #F9FAFB;
  color: #D1D5DB;
  border-color: #E5E7EB;
}

/* line 59, app/assets/stylesheets/components/_pagy_nav.scss */
.pagy-nav span.page.current {
  background-color: #F59E0B;
  border-color: #D97706;
  color: #FFFFFF;
}

/* line 65, app/assets/stylesheets/components/_pagy_nav.scss */
.pagy-nav span.page.active {
  color: #F59E0B;
}

/* line 70, app/assets/stylesheets/components/_pagy_nav.scss */
.pagy-nav .gap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  padding: 0.5rem 0.75rem;
  color: #6B7280;
}

/* line 79, app/assets/stylesheets/components/_pagy_nav.scss */
.pagy-nav label {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
  border-radius: 0.375rem;
  background-color: #F9FAFB;
  border: 1px solid #E5E7EB;
  padding: 0.25rem 0.75rem;
  color: #4B5563;
}

/* line 90, app/assets/stylesheets/components/_pagy_nav.scss */
.pagy-nav label input {
  line-height: 1.5rem;
  border-radius: 0.375rem;
  border-style: none;
  background-color: #FFFFFF;
  border: 1px solid #D1D5DB;
  padding: 0.25rem 0.5rem;
}

/* line 98, app/assets/stylesheets/components/_pagy_nav.scss */
.pagy-nav label input:focus {
  outline: none;
  border-color: #F59E0B;
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

/* line 46, app/assets/stylesheets/components/_vayla_flow.scss */
:root {
  --vayla-primary: #3B82F6;
  --vayla-secondary: #6B7280;
  --vayla-success: #10B981;
  --vayla-warning: #F59E0B;
  --vayla-danger: #EF4444;
  --vayla-info: #06B6D4;
  --vayla-background: #FFFFFF;
  --vayla-surface: #F9FAFB;
  --vayla-text: #111827;
  --vayla-text-secondary: #6B7280;
  --vayla-border: #E5E7EB;
  --vayla-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

/* line 61, app/assets/stylesheets/components/_vayla_flow.scss */
[data-theme="dark"] {
  --vayla-primary: #60A5FA;
  --vayla-secondary: #9CA3AF;
  --vayla-success: #34D399;
  --vayla-warning: #FBBF24;
  --vayla-danger: #F87171;
  --vayla-info: #22D3EE;
  --vayla-background: #111827;
  --vayla-surface: #1F2937;
  --vayla-text: #F9FAFB;
  --vayla-text-secondary: #D1D5DB;
  --vayla-border: #374151;
  --vayla-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}

/* line 65, app/assets/stylesheets/components/_vayla_flow.scss */
[data-theme="dark"] .vayla-button--secondary {
  background: linear-gradient(135deg, #374151 0%, #4B5563 100%) !important;
  color: #F9FAFB !important;
  border-color: #6B7280 !important;
}

/* line 70, app/assets/stylesheets/components/_vayla_flow.scss */
[data-theme="dark"] .vayla-button--secondary:hover:not(:disabled) {
  background: linear-gradient(135deg, #4B5563 0%, #6B7280 100%) !important;
  border-color: #9CA3AF !important;
}

/* line 76, app/assets/stylesheets/components/_vayla_flow.scss */
[data-theme="dark"] .vayla-button--ghost {
  color: #D1D5DB !important;
}

/* line 79, app/assets/stylesheets/components/_vayla_flow.scss */
[data-theme="dark"] .vayla-button--ghost:hover:not(:disabled) {
  background: rgba(107, 114, 128, 0.2) !important;
  color: #F9FAFB !important;
}

/* line 100, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 8px 16px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  border-radius: 8px !important;
  border: 1px solid transparent !important;
  position: relative !important;
  overflow: hidden !important;
  transform: translateY(0) !important;
  min-height: 2.5rem !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 92, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-button:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

/* line 119, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-button:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

/* line 125, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

/* line 138, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-button:active::before {
  width: 300px;
  height: 300px;
}

/* line 144, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-button svg {
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 148, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-button:hover:not(:disabled) svg {
  transform: scale(1.05);
}

/* line 154, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-button--primary {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%) !important;
  color: white !important;
  border-color: transparent !important;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

/* line 160, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-button--primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%) !important;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4), 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-1px) !important;
}

/* line 166, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-button--primary:active:not(:disabled) {
  transform: translateY(0) !important;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3) !important;
}

/* line 172, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-button--secondary {
  background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%) !important;
  color: #374151 !important;
  border-color: #D1D5DB !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

/* line 178, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-button--secondary:hover:not(:disabled) {
  background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%) !important;
  border-color: #9CA3AF !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-1px) !important;
}

/* line 185, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-button--secondary:active:not(:disabled) {
  transform: translateY(0) !important;
  background: #E5E7EB !important;
}

/* line 191, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-button--ghost {
  background: transparent !important;
  color: #6B7280 !important;
  border-color: transparent !important;
}

/* line 196, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-button--ghost:hover:not(:disabled) {
  background: rgba(107, 114, 128, 0.1) !important;
  color: #374151 !important;
}

/* line 202, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-button--success {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
  color: white !important;
  border-color: transparent !important;
  box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

/* line 208, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-button--success:hover:not(:disabled) {
  background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4), 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-1px) !important;
}

/* line 215, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-button--danger {
  background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%) !important;
  color: white !important;
  border-color: transparent !important;
  box-shadow: 0 2px 4px rgba(239, 68, 68, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

/* line 221, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-button--danger:hover:not(:disabled) {
  background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%) !important;
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4), 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-1px) !important;
}

/* line 229, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-button--sm {
  padding: 6px 12px !important;
  font-size: 12px !important;
  min-height: 2rem !important;
}

/* line 235, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-button--lg {
  padding: 12px 24px !important;
  font-size: 16px !important;
  min-height: 3rem !important;
}

/* line 241, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-button--xl {
  padding: 16px 32px !important;
  font-size: 18px !important;
  min-height: 3.5rem !important;
}

/* line 248, app/assets/stylesheets/components/_vayla_flow.scss */
div.vayla-badge, span.vayla-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 6px 12px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  border-radius: 9999px !important;
  position: relative !important;
  overflow: hidden !important;
  backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.025em !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06) !important;
}

/* line 265, app/assets/stylesheets/components/_vayla_flow.scss */
div.vayla-badge:hover, span.vayla-badge:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

/* line 270, app/assets/stylesheets/components/_vayla_flow.scss */
div.vayla-badge:active, span.vayla-badge:active {
  transform: translateY(0) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
}

/* line 276, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-badge--primary {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.1) 100%) !important;
  color: #1E40AF !important;
  border-color: rgba(59, 130, 246, 0.3) !important;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2), 0 1px 2px rgba(0, 0, 0, 0.06) !important;
}

/* line 282, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-badge--primary:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.15) 100%) !important;
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.25), 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

/* line 288, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-badge--secondary {
  background: linear-gradient(135deg, rgba(107, 114, 128, 0.15) 0%, rgba(75, 85, 99, 0.1) 100%) !important;
  color: #374151 !important;
  border-color: rgba(107, 114, 128, 0.3) !important;
  box-shadow: 0 2px 4px rgba(107, 114, 128, 0.2), 0 1px 2px rgba(0, 0, 0, 0.06) !important;
}

/* line 294, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-badge--secondary:hover {
  background: linear-gradient(135deg, rgba(107, 114, 128, 0.2) 0%, rgba(75, 85, 99, 0.15) 100%) !important;
  box-shadow: 0 8px 16px rgba(107, 114, 128, 0.25), 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

/* line 300, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-badge--success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.1) 100%) !important;
  color: #047857 !important;
  border-color: rgba(16, 185, 129, 0.3) !important;
  box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2), 0 1px 2px rgba(0, 0, 0, 0.06) !important;
}

/* line 306, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-badge--success:hover {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.15) 100%) !important;
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.25), 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

/* line 312, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-badge--warning {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.1) 100%) !important;
  color: #92400E !important;
  border-color: rgba(245, 158, 11, 0.3) !important;
  box-shadow: 0 2px 4px rgba(245, 158, 11, 0.2), 0 1px 2px rgba(0, 0, 0, 0.06) !important;
}

/* line 318, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-badge--warning:hover {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.15) 100%) !important;
  box-shadow: 0 8px 16px rgba(245, 158, 11, 0.25), 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

/* line 324, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-badge--danger {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%) !important;
  color: #B91C1C !important;
  border-color: rgba(239, 68, 68, 0.3) !important;
  box-shadow: 0 2px 4px rgba(239, 68, 68, 0.2), 0 1px 2px rgba(0, 0, 0, 0.06) !important;
}

/* line 330, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-badge--danger:hover {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.15) 100%) !important;
  box-shadow: 0 8px 16px rgba(239, 68, 68, 0.25), 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

/* line 336, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-badge--info {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(8, 145, 178, 0.1) 100%) !important;
  color: #0E7490 !important;
  border-color: rgba(6, 182, 212, 0.3) !important;
  box-shadow: 0 2px 4px rgba(6, 182, 212, 0.2), 0 1px 2px rgba(0, 0, 0, 0.06) !important;
}

/* line 342, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-badge--info:hover {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(8, 145, 178, 0.15) 100%) !important;
  box-shadow: 0 8px 16px rgba(6, 182, 212, 0.25), 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

/* line 349, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-badge--sm {
  padding: 2px 6px !important;
  font-size: 10px !important;
}

/* line 354, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-badge--lg {
  padding: 6px 12px !important;
  font-size: 14px !important;
}

/* line 360, app/assets/stylesheets/components/_vayla_flow.scss */
div.vayla-metric-card, a.vayla-metric-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: 12px !important;
  padding: 16px !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

@media (min-width: 640px) {
  /* line 360, app/assets/stylesheets/components/_vayla_flow.scss */
  div.vayla-metric-card, a.vayla-metric-card {
    padding: 20px !important;
    border-radius: 14px !important;
  }
}

@media (min-width: 1024px) {
  /* line 360, app/assets/stylesheets/components/_vayla_flow.scss */
  div.vayla-metric-card, a.vayla-metric-card {
    padding: 24px !important;
    border-radius: 16px !important;
  }
}

/* line 383, app/assets/stylesheets/components/_vayla_flow.scss */
div.vayla-metric-card::before, a.vayla-metric-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 4px !important;
  background: linear-gradient(90deg, #3B82F6, #8B5CF6, #06B6D4) !important;
  border-radius: 16px 16px 0 0 !important;
}

/* line 394, app/assets/stylesheets/components/_vayla_flow.scss */
div.vayla-metric-card:hover, a.vayla-metric-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 12px 24px rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(59, 130, 246, 0.3) !important;
}

/* line 401, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-metric-card__icon {
  width: 32px !important;
  height: 32px !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 12px !important;
  background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 50%, #06B6D4 100%) !important;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4), 0 4px 12px rgba(139, 92, 246, 0.3) !important;
  position: relative !important;
  overflow: hidden !important;
}

/* line 414, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-metric-card__icon::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%) !important;
  border-radius: 16px !important;
}

/* line 425, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-metric-card__icon svg {
  position: relative !important;
  z-index: 1 !important;
  color: white !important;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)) !important;
  width: 16px !important;
  height: 16px !important;
}

@media (min-width: 640px) {
  /* line 401, app/assets/stylesheets/components/_vayla_flow.scss */
  .vayla-metric-card__icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
    margin-bottom: 16px !important;
  }
  /* line 441, app/assets/stylesheets/components/_vayla_flow.scss */
  .vayla-metric-card__icon svg {
    width: 20px !important;
    height: 20px !important;
  }
}

@media (min-width: 1024px) {
  /* line 401, app/assets/stylesheets/components/_vayla_flow.scss */
  .vayla-metric-card__icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: 12px !important;
    margin-bottom: 20px !important;
  }
  /* line 454, app/assets/stylesheets/components/_vayla_flow.scss */
  .vayla-metric-card__icon svg {
    width: 24px !important;
    height: 24px !important;
  }
}

/* line 461, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-metric-card__value {
  font-size: 1.75rem !important;
  font-weight: 800 !important;
  background: linear-gradient(135deg, #1F2937 0%, #3B82F6 50%, #8B5CF6 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-bottom: 8px !important;
  line-height: 1.2 !important;
  letter-spacing: -0.025em !important;
}

@media (min-width: 640px) {
  /* line 461, app/assets/stylesheets/components/_vayla_flow.scss */
  .vayla-metric-card__value {
    font-size: 2rem !important;
  }
}

@media (min-width: 1024px) {
  /* line 461, app/assets/stylesheets/components/_vayla_flow.scss */
  .vayla-metric-card__value {
    font-size: 2.5rem !important;
  }
}

/* line 483, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-metric-card__title {
  color: #6B7280 !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  margin-bottom: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

@media (min-width: 640px) {
  /* line 483, app/assets/stylesheets/components/_vayla_flow.scss */
  .vayla-metric-card__title {
    font-size: 13px !important;
  }
}

@media (min-width: 1024px) {
  /* line 483, app/assets/stylesheets/components/_vayla_flow.scss */
  .vayla-metric-card__title {
    font-size: 14px !important;
  }
}

/* line 502, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-metric-card__change {
  font-size: 12px !important;
  font-weight: 600 !important;
}

/* line 506, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-metric-card__change--positive {
  color: #059669 !important;
}

/* line 510, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-metric-card__change--negative {
  color: #DC2626 !important;
}

/* line 514, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-metric-card__change--neutral {
  color: #6B7280 !important;
}

/* line 520, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-theme-toggle {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 8px !important;
  border-radius: 8px !important;
  border: 1px solid #D1D5DB !important;
  background: white !important;
  color: #374151 !important;
  transition: all 0.2s !important;
  cursor: pointer !important;
}

/* line 532, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-theme-toggle:hover {
  background: #F9FAFB !important;
}

/* line 536, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-theme-toggle:focus {
  outline: 2px solid transparent !important;
  outline-offset: 2px !important;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5) !important;
}

/* line 543, app/assets/stylesheets/components/_vayla_flow.scss */
[data-theme="dark"] .vayla-theme-toggle {
  border-color: #4B5563 !important;
  background: #1F2937 !important;
  color: #D1D5DB !important;
}

/* line 548, app/assets/stylesheets/components/_vayla_flow.scss */
[data-theme="dark"] .vayla-theme-toggle:hover {
  background: #374151 !important;
}

/* line 553, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-theme-toggle__icon {
  width: 20px !important;
  height: 20px !important;
}

/* line 559, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-card {
  background-color: var(--vayla-background) !important;
  color: var(--vayla-text) !important;
  border: 1px solid var(--vayla-border) !important;
  box-shadow: var(--vayla-shadow) !important;
  border-radius: 8px !important;
  padding: 24px !important;
  transition: all 0.2s !important;
}

/* line 569, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-card__header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 16px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid var(--vayla-border) !important;
}

/* line 578, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-card__title {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: var(--vayla-text) !important;
}

/* line 584, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-card__icon {
  width: 16px !important;
  height: 16px !important;
  margin-right: 8px !important;
  color: var(--vayla-text-secondary) !important;
}

@media (min-width: 640px) {
  /* line 584, app/assets/stylesheets/components/_vayla_flow.scss */
  .vayla-card__icon {
    width: 18px !important;
    height: 18px !important;
  }
}

@media (min-width: 1024px) {
  /* line 584, app/assets/stylesheets/components/_vayla_flow.scss */
  .vayla-card__icon {
    width: 20px !important;
    height: 20px !important;
  }
}

/* line 603, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-card__body {
  color: var(--vayla-text) !important;
}

/* line 607, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-card__actions {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 8px !important;
  margin-top: 16px !important;
  padding-top: 16px !important;
  border-top: 1px solid var(--vayla-border) !important;
}

/* line 618, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-card--primary {
  background-color: var(--vayla-primary) !important;
  color: var(--vayla-background) !important;
  border-color: var(--vayla-primary) !important;
}

/* line 624, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-card--secondary {
  background-color: var(--vayla-secondary) !important;
  color: var(--vayla-background) !important;
  border-color: var(--vayla-secondary) !important;
}

/* line 630, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-card--success {
  background-color: var(--vayla-success) !important;
  color: var(--vayla-background) !important;
  border-color: var(--vayla-success) !important;
}

/* line 636, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-card--warning {
  background-color: var(--vayla-warning) !important;
  color: var(--vayla-background) !important;
  border-color: var(--vayla-warning) !important;
}

/* line 642, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-card--danger {
  background-color: var(--vayla-danger) !important;
  color: var(--vayla-background) !important;
  border-color: var(--vayla-danger) !important;
}

/* line 648, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-card--info {
  background-color: var(--vayla-info) !important;
  color: var(--vayla-background) !important;
  border-color: var(--vayla-info) !important;
}

/* line 655, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-card--small {
  padding: 16px !important;
}

/* line 659, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-card--large {
  padding: 32px !important;
}

/* line 664, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-card--active {
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5) !important;
}

/* line 668, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-card--disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

/* line 674, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-wizard {
  background-color: var(--vayla-background) !important;
  color: var(--vayla-text) !important;
  border-radius: 8px !important;
  border: 1px solid var(--vayla-border) !important;
  padding: 24px !important;
}

/* line 682, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-wizard__progress {
  margin-bottom: 24px !important;
}

/* line 686, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-wizard__progress-bar {
  width: 100% !important;
  background-color: var(--vayla-border) !important;
  border-radius: 9999px !important;
  height: 8px !important;
}

/* line 693, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-wizard__progress-fill {
  background-color: var(--vayla-primary) !important;
  height: 8px !important;
  border-radius: 9999px !important;
  transition: all 0.3s !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 12px !important;
  color: white !important;
  font-weight: 500 !important;
}

/* line 706, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-wizard__step {
  display: none !important;
}

/* line 710, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-wizard__step--active {
  display: block !important;
}

/* line 714, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-wizard__step--completed {
  display: block !important;
  opacity: 0.5 !important;
}

/* line 719, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-wizard__navigation {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: 24px !important;
  padding-top: 24px !important;
  border-top: 1px solid var(--vayla-border) !important;
}

/* line 728, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-wizard__nav-button {
  padding: 8px 16px !important;
  border-radius: 8px !important;
  border: 1px solid var(--vayla-border) !important;
  font-weight: 500 !important;
  transition: all 0.2s !important;
  background-color: var(--vayla-background) !important;
  color: var(--vayla-text) !important;
  cursor: pointer !important;
}

/* line 738, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-wizard__nav-button:hover {
  background-color: var(--vayla-surface) !important;
}

/* line 743, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-wizard__nav-button--primary {
  background-color: var(--vayla-primary) !important;
  color: var(--vayla-background) !important;
  border-color: var(--vayla-primary) !important;
}

/* line 748, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-wizard__nav-button--primary:hover {
  opacity: 0.9 !important;
}

/* line 753, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-wizard__step-indicators {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

/* line 759, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-wizard__step-indicator {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  border: 2px solid var(--vayla-border) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: all 0.2s !important;
  background-color: var(--vayla-background) !important;
  color: var(--vayla-text-secondary) !important;
}

/* line 774, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-wizard__step-indicator--active {
  background-color: var(--vayla-primary) !important;
  color: var(--vayla-background) !important;
  border-color: var(--vayla-primary) !important;
}

/* line 780, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-wizard__step-indicator--completed {
  background-color: var(--vayla-success) !important;
  color: var(--vayla-background) !important;
  border-color: var(--vayla-success) !important;
}

@media (max-width: 640px) {
  /* line 788, app/assets/stylesheets/components/_vayla_flow.scss */
  .vayla-card {
    padding: 16px !important;
  }
  /* line 792, app/assets/stylesheets/components/_vayla_flow.scss */
  .vayla-wizard {
    padding: 16px !important;
  }
  /* line 796, app/assets/stylesheets/components/_vayla_flow.scss */
  .vayla-wizard__navigation {
    flex-direction: column !important;
    gap: 16px !important;
  }
  /* line 801, app/assets/stylesheets/components/_vayla_flow.scss */
  .vayla-wizard__step-indicators {
    justify-content: center !important;
  }
}

/* line 807, app/assets/stylesheets/components/_vayla_flow.scss */
* {
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease !important;
}

/* line 812, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-card:focus-within {
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5) !important;
}

/* line 817, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-dropdown {
  position: relative !important;
  display: inline-block !important;
}

/* line 822, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-dropdown-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

/* line 829, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-dropdown__menu {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  z-index: 50 !important;
  min-width: 200px !important;
  margin-top: 4px !important;
  background: white !important;
  border: 1px solid #E5E7EB !important;
  border-radius: 8px !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  overflow: hidden !important;
  transform: translateY(-8px) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.15s ease-out !important;
}

/* line 847, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-dropdown__menu--right {
  left: auto !important;
  right: 0 !important;
}

/* line 852, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-dropdown__menu:not(.hidden) {
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* line 858, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-dropdown__item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 12px 16px !important;
  color: #374151 !important;
  text-decoration: none !important;
  transition: background-color 0.15s ease !important;
  border: none !important;
  background: none !important;
  width: 100% !important;
  text-align: left !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

/* line 873, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-dropdown__item:hover {
  background-color: #F9FAFB !important;
  color: #111827 !important;
}

/* line 878, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-dropdown__item:focus {
  outline: none !important;
  background-color: #F3F4F6 !important;
}

/* line 884, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-dropdown__item-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 16px !important;
  height: 16px !important;
  color: #6B7280 !important;
}

/* line 893, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-dropdown__item-text {
  flex: 1 !important;
}

/* line 897, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-dropdown__item-badge {
  padding: 2px 6px !important;
  background-color: #E5E7EB !important;
  color: #374151 !important;
  border-radius: 4px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
}

/* line 906, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-dropdown__divider {
  height: 1px !important;
  background-color: #E5E7EB !important;
  margin: 4px 0 !important;
}

/* line 912, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-button__chevron {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 16px !important;
  height: 16px !important;
  transition: transform 0.15s ease !important;
}

/* line 921, app/assets/stylesheets/components/_vayla_flow.scss */
.vayla-dropdown--open .vayla-button__chevron {
  transform: rotate(180deg) !important;
}

@keyframes appear-then-fade {
  0%, 100% {
    opacity: 0;
  }
  5%, 60% {
    opacity: 1;
  }
}

/* line 1, app/assets/stylesheets/config/_variables.scss */
:root {
  --font-family-sans: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --line-height-headers: 1.1;
  --line-height-body:    1.5;
  --font-size-xs: 0.75rem;
  --font-size-s: 0.875rem;
  --font-size-m: 1rem;
  --font-size-l: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-xxl: 1.5rem;
  --font-size-xxxl: 2rem;
  --font-size-xxxxl: 2.5rem;
  --color-text-header: hsl(0, 1%, 16%);
  --color-text-body:   hsl(0, 5%, 25%);
  --color-text-muted:  hsl(0, 1%, 44%);
  --space-xxxs: 0.25rem;
  --space-xxs: 0.375rem;
  --space-xs: 0.5rem;
  --space-s: 0.75rem;
  --space-m: 1rem;
  --space-l: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 2.5rem;
  --space-xxxl: 3rem;
  --space-xxxxl: 4rem;
  --color-primary:          hsl(350, 67%, 50%);
  --color-primary-rotate:   hsl(10, 73%, 54%);
  --color-primary-bg:       hsl(0, 85%, 96%);
  --color-secondary:        hsl(101, 45%, 56%);
  --color-secondary-rotate: hsl(120, 45%, 56%);
  --color-tertiary:         hsl(49, 89%, 64%);
  --color-glint:            hsl(210, 100%, 82%);
  --color-dance-yellow:     #FFE900;
  --color-white:      hsl(0, 0%, 100%);
  --color-background: hsl(30, 50%, 98%);
  --color-light:      hsl(0, 6%, 93%);
  --color-dark:       var(--color-text-header);
  --border-radius: 0.375rem;
  --border: solid 2px var(--color-light);
  --shadow-large:  2px 4px 10px hsl(0 0% 0% / 0.1);
  --shadow-small:  1px 3px 6px hsl(0 0% 0% / 0.1);
}

/* Theme overrides scoped by container */
/* line 64, app/assets/stylesheets/config/_variables.scss */
[data-theme='light'] {
  --color-text-header: hsl(0, 1%, 16%);
  --color-text-body:   hsl(0, 5%, 25%);
  --color-text-muted:  hsl(0, 1%, 44%);
  --color-background:  hsl(30, 50%, 98%);
  --color-light:       hsl(0, 6%, 93%);
  --color-dark:        var(--color-text-header);
}

/* line 73, app/assets/stylesheets/config/_variables.scss */
[data-theme='dark'] {
  --color-text-header: hsl(0, 0%, 96%);
  --color-text-body:   hsl(0, 0%, 88%);
  --color-text-muted:  hsl(0, 0%, 65%);
  --color-background:  hsl(220, 15%, 12%);
  --color-light:       hsl(220, 14%, 20%);
  --color-dark:        hsl(0, 0%, 100%);
  --border: solid 2px hsl(220, 14%, 20%);
  --shadow-large:  2px 4px 10px hsl(0 0% 0% / 0.4);
  --shadow-small:  1px 3px 6px hsl(0 0% 0% / 0.3);
}

/* line 14, app/assets/stylesheets/application.scss */
.disabled-field {
  background-color: #f0f0f0;
  color: #b3b3b3;
}

/* line 19, app/assets/stylesheets/application.scss */
.notification {
  transition: all 0.3s ease-out;
  opacity: 1;
  transform: translateY(0);
}

/* line 25, app/assets/stylesheets/application.scss */
.notification-enter {
  opacity: 0;
  transform: translateY(-20px);
}
