/* * Custom CSS for the "Off-Brand" Badge * This overrides Gradio's default blocky styles to make it look like a premium React/MERN app. */ body { background-color: #f8fafc; /* Tailwind slate-50 background */ } .app-container { max-width: 1200px; margin: 0 auto; padding: 2rem; } .header-title { text-align: center; color: #0f172a; font-size: 2.5rem !important; font-weight: 800 !important; margin-bottom: 0.5rem; } .header-subtitle { text-align: center; color: #64748b; font-size: 1.1rem; margin-bottom: 2rem; } /* Glassmorphism effect for the input boxes */ .input-box { background: rgba(255, 255, 255, 0.7) !important; backdrop-filter: blur(10px); border-radius: 16px !important; border: 1px solid rgba(255, 255, 255, 0.5) !important; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); transition: all 0.2s ease; } .input-box:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); } /* Premium gradient submit button */ .submit-btn { background: linear-gradient(135deg, #3b82f6, #2563eb) !important; color: white !important; border: none !important; border-radius: 12px !important; padding: 12px !important; font-weight: bold !important; font-size: 1.1rem !important; margin-top: 1rem; box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39); transition: transform 0.1s ease; } .submit-btn:hover { transform: translateY(-2px); } /* Sleek chat window */ .chat-window { border-radius: 16px !important; border: 1px solid #e2e8f0 !important; box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05); background-color: white !important; } .chat-input { border-radius: 12px !important; border: 1px solid #cbd5e1 !important; }