@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  font-family: 'Inter', sans-serif;
}

body {
  margin: 0;
  padding: 0;
}

/* Content Type Buttons */
.content-type-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  background: white;
  cursor: pointer;
  transition: all 0.2s;
  color: #6b7280;
  font-weight: 500;
  font-size: 0.875rem;
}

.content-type-btn:hover {
  border-color: #9333ea;
  background: #faf5ff;
  color: #9333ea;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(147, 51, 234, 0.1);
}

.content-type-btn.active {
  border-color: #9333ea;
  background: linear-gradient(135deg, #9333ea 0%, #3b82f6 100%);
  color: white;
  box-shadow: 0 4px 12px -2px rgba(147, 51, 234, 0.5);
}

.content-type-btn i {
  display: block;
  margin-bottom: 0.5rem;
}

/* Content Sections */
.content-section {
  display: none;
}

.content-section.active {
  display: block;
  animation: fadeIn 0.3s ease-in;
}

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

/* File Upload List Items */
.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}

.file-item:hover {
  background: #f3f4f6;
}

.file-item-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  color: #374151;
  font-size: 0.875rem;
}

.file-item-remove {
  color: #ef4444;
  cursor: pointer;
  padding: 0.25rem;
  transition: all 0.2s;
}

.file-item-remove:hover {
  color: #dc2626;
  transform: scale(1.1);
}

/* Progress Animation */
#progress-bar {
  transition: width 0.5s ease-in-out;
}

/* Smooth transitions */
* {
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #9333ea;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #7c3aed;
}
