/* line 8, app/assets/stylesheets/onboarding_welcome.scss */
.welcome-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

/* line 21, app/assets/stylesheets/onboarding_welcome.scss */
.welcome-overlay__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

/* line 31, app/assets/stylesheets/onboarding_welcome.scss */
.welcome-overlay__content {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 32px 40px;
  max-width: 860px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
  animation: slideUp 0.4s ease-out;
}

/* line 48, app/assets/stylesheets/onboarding_welcome.scss */
.welcome-overlay__header {
  text-align: center;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* line 57, app/assets/stylesheets/onboarding_welcome.scss */
.welcome-overlay__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* line 63, app/assets/stylesheets/onboarding_welcome.scss */
.welcome-overlay__logo-image {
  height: 40px;
  width: auto;
  max-width: 100%;
  animation: logoPulse 2s ease-in-out infinite;
}

/* line 70, app/assets/stylesheets/onboarding_welcome.scss */
.welcome-overlay__subtitle {
  font-size: 14px;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
}

/* line 81, app/assets/stylesheets/onboarding_welcome.scss */
.welcome-overlay__progress-section {
  margin-bottom: 20px;
}

/* line 85, app/assets/stylesheets/onboarding_welcome.scss */
.welcome-overlay__progress-bar-container {
  margin-bottom: 12px;
  padding: 8px 16px;
  background: #f8fafc;
  border-radius: 12px;
}

/* line 92, app/assets/stylesheets/onboarding_welcome.scss */
.welcome-overlay__progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

/* line 99, app/assets/stylesheets/onboarding_welcome.scss */
.welcome-overlay__progress-text {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* line 107, app/assets/stylesheets/onboarding_welcome.scss */
.welcome-overlay__progress-percentage {
  font-size: 16px;
  font-weight: 700;
  color: #10b981;
}

/* line 113, app/assets/stylesheets/onboarding_welcome.scss */
.welcome-overlay__progress-bar {
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

/* line 121, app/assets/stylesheets/onboarding_welcome.scss */
.welcome-overlay__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
  transition: width 0.5s ease-out;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

/* line 129, app/assets/stylesheets/onboarding_welcome.scss */
.welcome-overlay__progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 2s infinite;
}

/* line 145, app/assets/stylesheets/onboarding_welcome.scss */
.welcome-overlay__progress-fill.progress-updating {
  animation: pulseProgress 0.3s ease-out;
}

/* line 154, app/assets/stylesheets/onboarding_welcome.scss */
.welcome-overlay__documents {
  margin-bottom: 20px;
}

/* line 158, app/assets/stylesheets/onboarding_welcome.scss */
.welcome-overlay__documents-title {
  font-size: 13px;
  font-weight: 600;
  color: #141c25;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 168, app/assets/stylesheets/onboarding_welcome.scss */
.welcome-overlay__documents-count {
  font-size: 13px;
  font-weight: 500;
  color: #637083;
  background: #f2f4f7;
  padding: 2px 8px;
  border-radius: 10px;
}

/* line 176, app/assets/stylesheets/onboarding_welcome.scss */
.welcome-overlay__documents-count .count-updated {
  animation: pulseScale 0.3s ease-out;
}

/* line 185, app/assets/stylesheets/onboarding_welcome.scss */
.welcome-overlay__doc-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  padding: 12px 8px;
}

/* line 192, app/assets/stylesheets/onboarding_welcome.scss */
.doc-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 56px;
  flex-shrink: 0;
  overflow: visible;
  position: relative;
  animation: docFadeIn 0.3s ease-out both;
}

/* line 204, app/assets/stylesheets/onboarding_welcome.scss */
.doc-icon--analyzing .doc-icon__fill {
  fill: #f0f7ff;
}

/* line 207, app/assets/stylesheets/onboarding_welcome.scss */
.doc-icon--analyzing .doc-icon__corner {
  fill: #d4e6fc;
}

/* line 210, app/assets/stylesheets/onboarding_welcome.scss */
.doc-icon--analyzing .doc-icon__line {
  stroke: #b0ceef;
}

/* line 213, app/assets/stylesheets/onboarding_welcome.scss */
.doc-icon--analyzing .doc-icon__ring-spinner {
  opacity: 1;
}

/* line 219, app/assets/stylesheets/onboarding_welcome.scss */
.doc-icon--success .doc-icon__fill {
  fill: #ecfdf5;
}

/* line 222, app/assets/stylesheets/onboarding_welcome.scss */
.doc-icon--success .doc-icon__corner {
  fill: #a7f3d0;
}

/* line 225, app/assets/stylesheets/onboarding_welcome.scss */
.doc-icon--success .doc-icon__line {
  stroke: #6ee7b7;
}

/* line 228, app/assets/stylesheets/onboarding_welcome.scss */
.doc-icon--success .doc-icon__badge {
  background: #10B981;
  transform: scale(1);
  animation: statusPop 0.3s ease-out;
}

/* line 236, app/assets/stylesheets/onboarding_welcome.scss */
.doc-icon--failed .doc-icon__fill {
  fill: #fef2f2;
}

/* line 239, app/assets/stylesheets/onboarding_welcome.scss */
.doc-icon--failed .doc-icon__corner {
  fill: #fecaca;
}

/* line 242, app/assets/stylesheets/onboarding_welcome.scss */
.doc-icon--failed .doc-icon__line {
  stroke: #fca5a5;
}

/* line 245, app/assets/stylesheets/onboarding_welcome.scss */
.doc-icon--failed .doc-icon__badge {
  background: #EF4444;
  transform: scale(1);
}

/* line 252, app/assets/stylesheets/onboarding_welcome.scss */
.doc-icon__file {
  width: 36px;
  height: 42px;
  position: relative;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
}

/* line 258, app/assets/stylesheets/onboarding_welcome.scss */
.doc-icon__file svg {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}

/* line 264, app/assets/stylesheets/onboarding_welcome.scss */
.doc-icon__file .doc-icon__fill {
  fill: #f4f5f7;
  transition: fill 0.3s ease;
}

/* line 269, app/assets/stylesheets/onboarding_welcome.scss */
.doc-icon__file .doc-icon__corner {
  fill: #e4e7ec;
  transition: fill 0.3s ease;
}

/* line 274, app/assets/stylesheets/onboarding_welcome.scss */
.doc-icon__file .doc-icon__line {
  stroke: #d1d5db;
  transition: stroke 0.3s ease;
}

/* line 280, app/assets/stylesheets/onboarding_welcome.scss */
.doc-icon__ring-spinner {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 2px solid transparent;
  border-top-color: #2E7FD8;
  border-right-color: rgba(46, 127, 216, 0.3);
  border-radius: 6px;
  animation: spin 1.2s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* line 295, app/assets/stylesheets/onboarding_welcome.scss */
.doc-icon__badge {
  position: absolute;
  bottom: 0px;
  right: -5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  transform: scale(0);
  transition: transform 0.2s ease;
}

/* line 310, app/assets/stylesheets/onboarding_welcome.scss */
.doc-icon__badge svg {
  width: 10px;
  height: 10px;
  stroke: white;
}

/* line 317, app/assets/stylesheets/onboarding_welcome.scss */
.doc-icon__name {
  font-size: 10px;
  font-weight: 500;
  color: #637083;
  text-align: center;
  line-height: 1.3;
  width: 100%;
  max-width: 56px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

@keyframes logoPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

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

@keyframes docPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.8;
  }
}

@keyframes statusPop {
  0% {
    transform: scale(0);
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* line 378, app/assets/stylesheets/onboarding_welcome.scss */
.document-card__svg-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* line 384, app/assets/stylesheets/onboarding_welcome.scss */
.document-card__status-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 390, app/assets/stylesheets/onboarding_welcome.scss */
.document-card--success .document-card__svg-icon {
  color: #10B981;
}

/* line 394, app/assets/stylesheets/onboarding_welcome.scss */
.document-card--analyzing .document-card__svg-icon {
  color: #2E7FD8;
}

/* line 398, app/assets/stylesheets/onboarding_welcome.scss */
.document-card--failed .document-card__svg-icon {
  color: #EF4444;
}

/* line 402, app/assets/stylesheets/onboarding_welcome.scss */
.document-card--pending .document-card__svg-icon {
  color: #637083;
}

/* line 406, app/assets/stylesheets/onboarding_welcome.scss */
.document-card__svg-icon--spin {
  animation: spin 1.5s linear infinite;
}

/* line 410, app/assets/stylesheets/onboarding_welcome.scss */
.document-card__spinner {
  width: 12px;
  height: 12px;
  border: 2px solid #e2e8f0;
  border-top-color: #2E7FD8;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* line 423, app/assets/stylesheets/onboarding_welcome.scss */
.welcome-overlay__case-analysis {
  margin-bottom: 20px;
}

/* line 427, app/assets/stylesheets/onboarding_welcome.scss */
.case-analysis-status {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

/* line 437, app/assets/stylesheets/onboarding_welcome.scss */
.case-analysis-status--pending {
  border-color: #e2e8f0;
  background: #f8fafc;
}

/* line 442, app/assets/stylesheets/onboarding_welcome.scss */
.case-analysis-status--analyzing {
  border-color: #bfdbfe;
  background: linear-gradient(135deg, #fafafe 0%, #EFF6FF 100%);
}

/* line 447, app/assets/stylesheets/onboarding_welcome.scss */
.case-analysis-status--success {
  border-color: #86efac;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

/* line 452, app/assets/stylesheets/onboarding_welcome.scss */
.case-analysis-status--warning {
  border-color: #fcd34d;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

/* line 457, app/assets/stylesheets/onboarding_welcome.scss */
.case-analysis-status--failed {
  border-color: #fca5a5;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

/* line 463, app/assets/stylesheets/onboarding_welcome.scss */
.case-analysis-status__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* line 475, app/assets/stylesheets/onboarding_welcome.scss */
.case-analysis-status__svg-icon {
  width: 18px;
  height: 18px;
}

/* line 480, app/assets/stylesheets/onboarding_welcome.scss */
.case-analysis-status--pending .case-analysis-status__svg-icon {
  color: #637083;
}

/* line 484, app/assets/stylesheets/onboarding_welcome.scss */
.case-analysis-status--analyzing .case-analysis-status__svg-icon {
  color: #2E7FD8;
}

/* line 488, app/assets/stylesheets/onboarding_welcome.scss */
.case-analysis-status--success .case-analysis-status__svg-icon {
  color: #10B981;
}

/* line 492, app/assets/stylesheets/onboarding_welcome.scss */
.case-analysis-status--warning .case-analysis-status__svg-icon {
  color: #f59e0b;
}

/* line 496, app/assets/stylesheets/onboarding_welcome.scss */
.case-analysis-status--failed .case-analysis-status__svg-icon {
  color: #EF4444;
}

/* line 500, app/assets/stylesheets/onboarding_welcome.scss */
.case-analysis-status__content {
  flex: 1;
}

/* line 504, app/assets/stylesheets/onboarding_welcome.scss */
.case-analysis-status__title {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}

/* line 511, app/assets/stylesheets/onboarding_welcome.scss */
.case-analysis-status__message {
  font-size: 12px;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

/* line 518, app/assets/stylesheets/onboarding_welcome.scss */
.case-analysis-status__loader {
  flex-shrink: 0;
}

/* line 522, app/assets/stylesheets/onboarding_welcome.scss */
.case-analysis-status__button {
  display: inline-block;
  flex-shrink: 0;
  margin-left: auto;
  padding: 10px 20px;
  background: #10b981;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

/* line 537, app/assets/stylesheets/onboarding_welcome.scss */
.case-analysis-status__button:hover {
  background: #059669;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* line 543, app/assets/stylesheets/onboarding_welcome.scss */
.case-analysis-status__button:active {
  transform: translateY(0);
}

/* line 548, app/assets/stylesheets/onboarding_welcome.scss */
.case-analysis-status__skip {
  flex-shrink: 0;
  text-align: center;
  margin-left: auto;
}

/* line 554, app/assets/stylesheets/onboarding_welcome.scss */
.case-analysis-status__skip-link {
  display: inline-block;
  color: #2E7FD8;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  padding: 8px 16px;
  border: 2px solid #2E7FD8;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

/* line 567, app/assets/stylesheets/onboarding_welcome.scss */
.case-analysis-status__skip-link:hover {
  background: #2E7FD8;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(46, 127, 216, 0.3);
}

/* line 574, app/assets/stylesheets/onboarding_welcome.scss */
.case-analysis-status__skip-link:active {
  transform: translateY(0);
}

/* line 579, app/assets/stylesheets/onboarding_welcome.scss */
.case-analysis-status__skip-note {
  margin-top: 4px;
  font-size: 10px;
  color: #94a3b8;
  white-space: nowrap;
}

/* line 590, app/assets/stylesheets/onboarding_welcome.scss */
.welcome-overlay__tips {
  display: flex;
  flex-direction: row;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid #e2e8f0;
}

/* line 598, app/assets/stylesheets/onboarding_welcome.scss */
.welcome-overlay__tip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #f1f5f9;
  flex: 1;
}

/* line 609, app/assets/stylesheets/onboarding_welcome.scss */
.welcome-overlay__tip-icon {
  width: 16px;
  height: 16px;
  color: #2E7FD8;
  flex-shrink: 0;
}

/* line 616, app/assets/stylesheets/onboarding_welcome.scss */
.welcome-overlay__tip-text {
  font-size: 11px;
  color: #475569;
  margin: 0;
  line-height: 1.3;
}

/* line 627, app/assets/stylesheets/onboarding_welcome.scss */
.tutorial-highlight {
  position: absolute;
  border: 3px solid #1e6fc8;
  border-radius: 8px;
  pointer-events: none;
  z-index: 9998;
  animation: tutorialPulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 99999px rgba(0, 0, 0, 0.5);
}

/* line 636, app/assets/stylesheets/onboarding_welcome.scss */
.tutorial-highlight--fade-out {
  animation: fadeOut 0.3s ease-out forwards;
}

/* line 641, app/assets/stylesheets/onboarding_welcome.scss */
.tutorial-tooltip {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 24px;
  max-width: 400px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  animation: tooltipFadeIn 0.3s ease-out;
}

/* line 651, app/assets/stylesheets/onboarding_welcome.scss */
.tutorial-tooltip--fade-out {
  animation: fadeOut 0.3s ease-out forwards;
}

/* line 656, app/assets/stylesheets/onboarding_welcome.scss */
.tutorial-tooltip__content {
  position: relative;
}

/* line 660, app/assets/stylesheets/onboarding_welcome.scss */
.tutorial-tooltip__title {
  font-size: 18px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 8px;
}

/* line 667, app/assets/stylesheets/onboarding_welcome.scss */
.tutorial-tooltip__message {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* line 674, app/assets/stylesheets/onboarding_welcome.scss */
.tutorial-tooltip__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

/* line 681, app/assets/stylesheets/onboarding_welcome.scss */
.tutorial-tooltip__skip {
  background: transparent;
  border: none;
  color: #718096;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

/* line 691, app/assets/stylesheets/onboarding_welcome.scss */
.tutorial-tooltip__skip:hover {
  background: #f7fafc;
  color: #4b5563;
}

/* line 697, app/assets/stylesheets/onboarding_welcome.scss */
.tutorial-tooltip__navigation {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 703, app/assets/stylesheets/onboarding_welcome.scss */
.tutorial-tooltip__progress {
  font-size: 12px;
  color: #718096;
  font-weight: 500;
}

/* line 709, app/assets/stylesheets/onboarding_welcome.scss */
.tutorial-tooltip__next,
.tutorial-tooltip__finish {
  background: #1e6fc8;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 721, app/assets/stylesheets/onboarding_welcome.scss */
.tutorial-tooltip__next:hover,
.tutorial-tooltip__finish:hover {
  background: #1e6fc8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(46, 127, 216, 0.3);
}

/* line 728, app/assets/stylesheets/onboarding_welcome.scss */
.tutorial-tooltip__arrow {
  position: absolute;
  width: 12px;
  height: 12px;
  background: white;
  transform: rotate(45deg);
}

/* line 736, app/assets/stylesheets/onboarding_welcome.scss */
.tutorial-tooltip--top .tutorial-tooltip__arrow {
  bottom: -6px;
  left: 50%;
  margin-left: -6px;
}

/* line 742, app/assets/stylesheets/onboarding_welcome.scss */
.tutorial-tooltip--bottom .tutorial-tooltip__arrow {
  top: -6px;
  left: 50%;
  margin-left: -6px;
}

/* line 748, app/assets/stylesheets/onboarding_welcome.scss */
.tutorial-tooltip--left .tutorial-tooltip__arrow {
  right: -6px;
  top: 50%;
  margin-top: -6px;
}

/* line 754, app/assets/stylesheets/onboarding_welcome.scss */
.tutorial-tooltip--right .tutorial-tooltip__arrow {
  left: -6px;
  top: 50%;
  margin-top: -6px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

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

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes pulseScale {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes pulseProgress {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

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

@keyframes successPop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes tutorialPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

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

/* line 881, app/assets/stylesheets/onboarding_welcome.scss */
.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid #e2e8f0;
  border-top-color: #1e6fc8;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* line 889, app/assets/stylesheets/onboarding_welcome.scss */
.spinner--small {
  width: 16px;
  height: 16px;
  border-width: 2px;
}

@media (max-width: 768px) {
  /* line 901, app/assets/stylesheets/onboarding_welcome.scss */
  .welcome-overlay__content {
    padding: 24px 20px;
    max-height: 95vh;
    border-radius: 16px;
  }
  /* line 907, app/assets/stylesheets/onboarding_welcome.scss */
  .welcome-overlay__title {
    font-size: 22px;
  }
  /* line 911, app/assets/stylesheets/onboarding_welcome.scss */
  .welcome-overlay__subtitle {
    font-size: 13px;
  }
  /* line 915, app/assets/stylesheets/onboarding_welcome.scss */
  .welcome-overlay__documents-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  /* line 920, app/assets/stylesheets/onboarding_welcome.scss */
  .welcome-overlay__progress-bar-container {
    padding: 12px 16px;
  }
  /* line 924, app/assets/stylesheets/onboarding_welcome.scss */
  .document-card {
    padding: 10px;
  }
  /* line 928, app/assets/stylesheets/onboarding_welcome.scss */
  .document-card__title {
    font-size: 11px;
  }
  /* line 932, app/assets/stylesheets/onboarding_welcome.scss */
  .case-analysis-status {
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  /* line 939, app/assets/stylesheets/onboarding_welcome.scss */
  .case-analysis-status__icon {
    margin: 0 auto 8px;
  }
  /* line 943, app/assets/stylesheets/onboarding_welcome.scss */
  .tutorial-tooltip {
    max-width: calc(100vw - 40px);
    padding: 20px;
  }
}

@media (max-width: 480px) {
  /* line 950, app/assets/stylesheets/onboarding_welcome.scss */
  .welcome-overlay__documents-grid {
    grid-template-columns: 1fr;
  }
}
