/* Generated CSS with Tailwind utilities */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  min-height: 100vh;
  color: #f1f5f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
header {
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #334155;
}

/* Cards */
.card {
  background: #1e293b;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  border: 1px solid #334155;
  overflow: hidden;
}

/* Buttons */
.btn-primary {
  background: #2563eb;
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  transform: translateY(0);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: #f1f5f9;
  color: #475569;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: #e2e8f0;
}

/* Form elements */
.input-field {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #475569;
  border-radius: 8px;
  transition: all 0.2s;
  font-family: inherit;
  background: #0f172a;
  color: #f1f5f9;
}

.input-field:focus {
  outline: none;
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

.upload-area {
  border: 2px dashed #475569;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  background: #0f172a;
}

.upload-area:hover {
  border-color: #60a5fa;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { 
    transform: translateY(10px);
    opacity: 0;
  }
  to { 
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

.animate-slide-up {
  animation: slideUp 0.3s ease-out;
}

/* Utility classes */
.flex { display: flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

.rounded-lg { border-radius: 8px; }
.rounded-xl { border-radius: 12px; }
.rounded-full { border-radius: 9999px; }

.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-16 { margin-top: 4rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.w-full { width: 100%; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }

.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.hidden { display: none; }
.block { display: block; }
.inline { display: inline; }
.inline-flex { display: inline-flex; }

.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.z-50 { z-index: 50; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

.bg-white { background-color: #1e293b; }
.bg-primary-100 { background-color: #1e3a8a; }
.bg-primary-50 { background-color: #1e3a8a; }
.bg-secondary-100 { background-color: #334155; }
.bg-secondary-50 { background-color: #0f172a; }
.bg-green-50 { background-color: #14532d; }
.bg-green-100 { background-color: #14532d; }
.bg-blue-50 { background-color: #1e3a8a; }
.bg-blue-100 { background-color: #1e3a8a; }
.bg-red-100 { background-color: #7f1d1d; }

.text-primary-600 { color: #60a5fa; }
.text-primary-700 { color: #3b82f6; }
.text-primary-800 { color: #2563eb; }
.text-secondary-400 { color: #94a3b8; }
.text-secondary-500 { color: #64748b; }
.text-secondary-600 { color: #475569; }
.text-secondary-700 { color: #334155; }
.text-secondary-800 { color: #e2e8f0; }
.text-secondary-900 { color: #f1f5f9; }
.text-green-600 { color: #22c55e; }
.text-green-700 { color: #16a34a; }
.text-green-800 { color: #15803d; }
.text-red-600 { color: #ef4444; }
.text-red-700 { color: #dc2626; }
.text-white { color: #f1f5f9; }

.border { border: 1px solid; }
.border-t { border-top: 1px solid; }
.border-b { border-bottom: 1px solid; }
.border-secondary-100 { border-color: #334155; }
.border-secondary-200 { border-color: #475569; }
.border-secondary-300 { border-color: #64748b; }
.border-primary-100 { border-color: #1e3a8a; }
.border-primary-400 { border-color: #60a5fa; }
.border-primary-500 { border-color: #3b82f6; }
.border-green-200 { border-color: #14532d; }
.border-red-200 { border-color: #7f1d1d; }

.rounded { border-radius: 0.25rem; }

.resize-none { resize: none; }
.cursor-pointer { cursor: pointer; }

.transition-colors { transition-property: color, background-color, border-color; }
.transition-all { transition-property: all; }
.duration-200 { transition-duration: 200ms; }

.group:hover .group-hover\:bg-opacity-10 {
  background-color: rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .sm\:inline { display: inline; }
  .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
  .md\:text-2xl { font-size: 1.5rem; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Grid layout */
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* Loading spinner */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* Hover effects */
.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:text-primary-600:hover {
  color: #2563eb;
}

.hover\:text-red-700:hover {
  color: #b91c1c;
}

.hover\:border-primary-400:hover {
  border-color: #60a5fa;
}

/* Focus styles */
.focus\:outline-none:focus {
  outline: none;
}

.focus\:ring-2:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.focus\:ring-offset-2:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1), 0 0 0 2px white;
}

/* Background gradients */
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-primary-600 {
  --tw-gradient-from: #2563eb;
}

.to-primary-800 {
  --tw-gradient-to: #1e40af;
}

.from-primary-50 {
  --tw-gradient-from: #eff6ff;
}

.to-blue-50 {
  --tw-gradient-to: #dbeafe;
}

/* Text gradient */
.bg-clip-text {
  background-clip: text;
}

.text-transparent {
  color: transparent;
}

/* Backdrop blur */
.backdrop-blur-md {
  backdrop-filter: blur(12px);
}

/* Max width */
.max-w-md { max-width: 28rem; }

/* Overflow */
.overflow-auto { overflow: auto; }
