/* Add this CSS for exact styling */ #main-container { max-width: 800px; margin: 0 auto; padding: 20px; } #main-title { text-align: center; margin-bottom: 10px; color: #2c3e50; font-size: 2.5em; } #subtitle { text-align: center; margin-bottom: 30px; color: #666; font-size: 1.1em; } #input-row { margin: 20px 0; justify-content: center; } #image-input { border: 2px solid #e0e0e0; border-radius: 8px; padding: 10px; background: #f8f9fa; } #button-row { margin: 25px 0; justify-content: center; } #analyze-btn { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 15px 40px; font-size: 1.2em; border-radius: 8px; border: none; transition: all 0.3s ease; } #analyze-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3); } #output-row { margin: 25px 0; } #output-header { text-align: center; font-size: 1.3em; color: #2c3e50; margin-bottom: 15px; } #output-text { background: #f8f9fa; border: 1px solid #dee2e6; border-radius: 8px; padding: 20px; font-size: 1.1em; line-height: 1.6; } #footer-row { margin-top: 40px; }