Changed around line 1
+ :root {
+ --primary-color: #2a4365;
+ --secondary-color: #4299e1;
+ --background-color: #f7fafc;
+ --text-color: #2d3748;
+ --border-radius: 8px;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: system-ui, -apple-system, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background: var(--background-color);
+ }
+
+ header {
+ background: var(--primary-color);
+ padding: 1rem;
+ box-shadow: 0 2px 4px rgba(0,0,0,0.1);
+ }
+
+ nav {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ color: white;
+ font-size: 1.5rem;
+ font-weight: bold;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ margin-left: 2rem;
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--secondary-color);
+ }
+
+ .hero {
+ text-align: center;
+ padding: 4rem 2rem;
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .upload-section {
+ max-width: 1200px;
+ margin: 2rem auto;
+ padding: 2rem;
+ }
+
+ .upload-container {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin: 2rem 0;
+ }
+
+ .upload-box {
+ background: white;
+ padding: 2rem;
+ border-radius: var(--border-radius);
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ transition: var(--transition);
+ }
+
+ .upload-box:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 6px 8px rgba(0,0,0,0.15);
+ }
+
+ .upload-box label {
+ display: block;
+ margin-bottom: 1rem;
+ font-weight: bold;
+ }
+
+ .upload-box input[type="file"] {
+ width: 100%;
+ padding: 0.5rem;
+ border: 2px dashed var(--secondary-color);
+ border-radius: var(--border-radius);
+ cursor: pointer;
+ }
+
+ .preview {
+ margin-top: 1rem;
+ min-height: 200px;
+ background: var(--background-color);
+ border-radius: var(--border-radius);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ }
+
+ .model-selection {
+ margin: 2rem 0;
+ }
+
+ select {
+ width: 100%;
+ padding: 0.8rem;
+ border-radius: var(--border-radius);
+ border: 1px solid var(--secondary-color);
+ background: white;
+ margin-top: 1rem;
+ }
+
+ .process-button {
+ display: block;
+ width: 100%;
+ padding: 1rem;
+ background: var(--secondary-color);
+ color: white;
+ border: none;
+ border-radius: var(--border-radius);
+ font-size: 1.1rem;
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ .process-button:hover {
+ background: var(--primary-color);
+ transform: translateY(-1px);
+ }
+
+ .results-container {
+ margin-top: 2rem;
+ padding: 2rem;
+ background: white;
+ border-radius: var(--border-radius);
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ }
+
+ footer {
+ background: var(--primary-color);
+ color: white;
+ text-align: center;
+ padding: 1rem;
+ margin-top: 2rem;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero h1 {
+ font-size: 2rem;
+ }
+
+ .upload-section {
+ padding: 1rem;
+ }
+
+ .upload-container {
+ grid-template-columns: 1fr;
+ }
+ }