|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap'); |
|
|
|
|
|
:root { |
|
|
--black: #000000; |
|
|
--deep-blue: #0B1D35; |
|
|
--navy: #1A3556; |
|
|
--blue: #3E8BF7; |
|
|
--violet: #7B61FF; |
|
|
--white: #FFFFFF; |
|
|
--bg-primary: var(--deep-blue); |
|
|
--bg-secondary: var(--navy); |
|
|
--accent: var(--blue); |
|
|
} |
|
|
|
|
|
body, .gradio-container { |
|
|
background-color: var(--bg-primary) !important; |
|
|
color: var(--white) !important; |
|
|
font-family: 'Inter', -apple-system, sans-serif !important; |
|
|
} |
|
|
|
|
|
|
|
|
.header-container { |
|
|
display: flex; |
|
|
align-items: center; |
|
|
padding: 1.5rem 0; |
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.1); |
|
|
margin-bottom: 2rem; |
|
|
} |
|
|
|
|
|
.header-text h1 { |
|
|
font-size: 2.2rem; |
|
|
font-weight: 700; |
|
|
margin: 0; |
|
|
background: linear-gradient(135deg, #FFFFFF 0%, #3E8BF7 100%); |
|
|
-webkit-background-clip: text; |
|
|
background-clip: text; |
|
|
-webkit-text-fill-color: transparent; |
|
|
} |
|
|
|
|
|
.header-text p { |
|
|
font-size: 1rem; |
|
|
color: rgba(255, 255, 255, 0.7); |
|
|
margin: 0.3rem 0 0 0; |
|
|
} |
|
|
|
|
|
|
|
|
.sidebar { |
|
|
background-color: var(--bg-secondary) !important; |
|
|
border-radius: 16px !important; |
|
|
padding: 1.2rem !important; |
|
|
border: 1px solid rgba(255, 255, 255, 0.05) !important; |
|
|
} |
|
|
|
|
|
|
|
|
.primary-btn { |
|
|
background: var(--blue) !important; |
|
|
color: white !important; |
|
|
border: none !important; |
|
|
border-radius: 12px !important; |
|
|
font-weight: 600 !important; |
|
|
transition: all 0.3s ease !important; |
|
|
height: 50px !important; |
|
|
} |
|
|
|
|
|
.primary-btn:hover { |
|
|
filter: brightness(1.1); |
|
|
transform: translateY(-1px); |
|
|
box-shadow: 0 4px 12px rgba(62, 139, 247, 0.3); |
|
|
} |
|
|
|
|
|
|
|
|
.gr-textbox textarea, .gr-textbox input, |
|
|
input[type="text"], input[type="password"] { |
|
|
background-color: rgba(255, 255, 255, 0.05) !important; |
|
|
border: 1px solid rgba(255, 255, 255, 0.1) !important; |
|
|
color: white !important; |
|
|
border-radius: 10px !important; |
|
|
} |
|
|
|
|
|
.gr-textbox textarea:focus, .gr-textbox input:focus, |
|
|
input[type="text"]:focus, input[type="password"]:focus { |
|
|
background-color: rgba(255, 255, 255, 0.08) !important; |
|
|
border-color: var(--blue) !important; |
|
|
box-shadow: 0 0 0 2px rgba(62, 139, 247, 0.2) !important; |
|
|
} |
|
|
|
|
|
|
|
|
input:-webkit-autofill, |
|
|
input:-webkit-autofill:hover, |
|
|
input:-webkit-autofill:focus, |
|
|
input:-webkit-autofill:active { |
|
|
-webkit-box-shadow: 0 0 0 30px var(--bg-secondary) inset !important; |
|
|
-webkit-text-fill-color: white !important; |
|
|
transition: background-color 5000s ease-in-out 0s; |
|
|
} |
|
|
|
|
|
|
|
|
input[type="password"], input[type="text"], .gr-textbox input { |
|
|
color: white !important; |
|
|
} |
|
|
|
|
|
|
|
|
.example-btn { |
|
|
background: rgba(255, 255, 255, 0.05) !important; |
|
|
border: 1px solid rgba(255, 255, 255, 0.1) !important; |
|
|
color: white !important; |
|
|
text-align: left !important; |
|
|
margin-bottom: 0.6rem !important; |
|
|
border-radius: 10px !important; |
|
|
font-size: 0.9rem !important; |
|
|
padding: 0.8rem 1.2rem !important; |
|
|
cursor: pointer; |
|
|
transition: all 0.2s; |
|
|
} |
|
|
|
|
|
.example-btn:hover { |
|
|
background: rgba(255, 255, 255, 0.1) !important; |
|
|
border-color: var(--blue) !important; |
|
|
} |
|
|
|
|
|
|
|
|
.source-card { |
|
|
background: rgba(255, 255, 255, 0.03); |
|
|
border-left: 4px solid var(--blue); |
|
|
padding: 1rem; |
|
|
margin-top: 1rem; |
|
|
border-radius: 4px 12px 12px 4px; |
|
|
} |
|
|
|
|
|
.source-meta { |
|
|
font-size: 0.85rem; |
|
|
color: var(--blue); |
|
|
font-weight: 700; |
|
|
margin-bottom: 0.5rem; |
|
|
} |
|
|
|
|
|
|
|
|
.gr-accordion { |
|
|
border: 1px solid rgba(255, 255, 255, 0.1) !important; |
|
|
background: transparent !important; |
|
|
margin-top: 1rem; |
|
|
} |
|
|
|
|
|
|
|
|
.logo-img img { |
|
|
height: 40px !important; |
|
|
width: auto !important; |
|
|
} |
|
|
|