/* Welcome Screen Styles */
.welcome-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.welcome-feature-icon {
  font-size: 24px;
  min-width: 30px;
  text-align: center;
}

.welcome-feature-text {
  font-size: 14px;
  line-height: 1.4;
}

/* Button animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 100, 0, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 100, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 100, 0, 0);
  }
}

.welcome-btn:focus {
  animation: pulse 1.5s infinite;
  outline: none;
}