/* Progress bar animation */
.progress-bar-inner {
  animation: progress 2s infinite linear;
}

@keyframes progress {
  0% { width: 0%; }
  50% { width: 50%; }
  100% { width: 100%; }
}

/* Dragover state for upload box */
.dragover {
  border-color: #667eea !important;
  background-color: rgba(102, 126, 234, 0.05) !important;
}

/* Copy button copied state */
.copy-btn.copied {
  background-color: #10b981 !important;
  border-color: #059669 !important;
  color: white !important;
}

/* Cookie banner show animation */
#cookie-banner.show {
  transform: translateY(0) !important;
}

/* Legal content pages (Terms, Privacy) */
.legal-content {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
}

.dark .legal-content {
  background-color: #1f2937;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.legal-content h1 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  text-align: center;
}

.dark .legal-content h1 {
  color: #f3f4f6;
}

.legal-content section {
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.dark .legal-content h2 {
  color: #e5e7eb;
}

.legal-content p, .legal-content li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.dark .legal-content p, .dark .legal-content li {
  color: #d1d5db;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
