/* Light mode (default) */ :root { --bg-primary: #FFFAEB; --bg-secondary: #FFF0C3; --bg-card: #FFFAEB; --bg-grid: rgba(0, 0, 0, 0.02); --text-primary: #1E1E1E; --text-secondary: #444444; --text-tertiary: #555555; --border: #E9E2CB; --accent: #FF8205; --accent-light: rgba(255, 130, 5, 0.1); --shadow: 0 4px 24px rgba(0, 0, 0, 0.06); } /* Dark mode (custom) */ .dark { --bg-primary: #121212; --bg-secondary: #1E1E1E; --bg-card: #1E1E1E; --bg-grid: rgba(255, 255, 255, 0.02); --text-primary: #E0E0E0; --text-secondary: #AAAAAA; --text-tertiary: #888888; --border: #333333; --accent: #FF8C00; --accent-light: rgba(255, 140, 0, 0.1); --shadow: 0 4px 24px rgba(0, 0, 0, 0.2); } /* Body and container margins */ body { margin: 0; padding: 0; min-height: 100vh; display: flex; justify-content: center; background-color: var(--bg-primary); } .gradio-container { background-color: var(--bg-primary) !important; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px) !important; background-size: 40px 40px !important; margin: 1rem auto !important; padding: 1rem !important; width: calc(100% - 4rem) !important; max-width: 1400px !important; box-sizing: border-box !important; border-radius: 12px !important; box-shadow: var(--shadow); } /* Tabs container */ .gradio-tabs { padding: 0 !important; margin: 0 !important; display: flex; gap: 0; width: calc(100% + 2rem) !important; margin-left: -1rem !important; border-radius: 12px 12px 0 0 !important; background: var(--bg-secondary) !important; overflow: hidden; border-top-left-radius: 12px !important; border-top-right-radius: 12px !important; } /* Individual tab items */ .gradio-tabitem { background: transparent !important; color: var(--text-tertiary) !important; border: none !important; padding: 0.75rem 1.5rem !important; margin: 0 !important; border-radius: 0 !important; } /* Active tab styling */ .gradio-tabitem.active { color: var(--text-primary) !important; background: var(--bg-card) !important; border-bottom: 2px solid var(--accent) !important; } /* Tab content container */ .gradio-tab > div { padding: 1.5rem !important; background: var(--bg-card) !important; border-radius: 0 12px 12px 12px !important; border: 1px solid var(--border) !important; border-top: none !important; margin: 0 !important; width: calc(100% - 2rem) !important; margin-left: 1rem !important; } /* Tab content elements */ .gradio-box { background: var(--bg-card) !important; border: 1px solid var(--border) !important; color: var(--text-primary) !important; padding: 1.5rem !important; margin-bottom: 1.5rem !important; border-radius: 8px !important; } /* Markdown and text elements inside tabs */ .gradio-markdown { padding: 0 0.5rem !important; } /* Group elements inside tabs */ .gradio-group { padding: 1rem !important; margin-bottom: 1.5rem !important; background: var(--bg-card) !important; border: 1px solid var(--border) !important; border-radius: 8px !important; } /* Input elements inside tabs */ .gradio-textbox, .gradio-dropdown, .gradio-slider { margin-bottom: 1rem !important; padding: 0.75rem !important; }