Spaces:
Runtime error
Runtime error
File size: 2,545 Bytes
86e0042 62883a3 86e0042 62883a3 86e0042 62883a3 86e0042 62883a3 e0af6e8 62883a3 86e0042 62883a3 86e0042 62883a3 86e0042 62883a3 86e0042 62883a3 86e0042 62883a3 86e0042 62883a3 86e0042 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 | :root,
.dark {
--body-background-fill: #0b1220;
--body-text-color: #e7eaf0;
--accent: #6366f1;
--accent-hover: #4f46e5;
}
.header {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
padding: 0.5rem 0;
}
.header .column:first-child {
flex: 0 1 auto;
}
.header .column:last-child {
flex: 1 1 auto;
display: flex;
justify-content: flex-end;
}
.header-right {
align-items: center;
gap: 12px;
}
.header-title p {
margin: 0;
font-size: 1.25rem;
font-weight: 600;
}
.header-hf-btn button {
background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
color: #1f2937 !important;
font-weight: 600 !important;
border: none !important;
}
.header-hf-btn button:hover {
background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
}
.gradio-container {
max-width: 100vw !important;
}
.section-card {
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 12px;
padding: 14px;
background: rgba(255, 255, 255, 0.03);
}
.section-title {
padding: 0.4rem;
}
/* Primary buttons: blue/purple accent */
button.primary,
.primary button,
[variant="primary"] button {
background: var(--accent) !important;
color: white !important;
border: none !important;
}
button.primary:hover,
.primary button:hover,
[variant="primary"] button:hover {
background: var(--accent-hover) !important;
}
/* Tabs: selected = accent, others = dark grey */
.gradio-tabs .tab-nav button.selected {
background: var(--accent) !important;
color: white !important;
border-radius: 8px;
}
.gradio-tabs .tab-nav button:not(.selected) {
background: rgba(255, 255, 255, 0.06) !important;
color: var(--body-text-color) !important;
}
.pill {
display: inline-block;
padding: 6px 10px;
border-radius: 999px;
border: 1px solid rgba(255, 255, 255, 0.14);
background: rgba(255, 255, 255, 0.04);
font-size: 12px;
}
.bigbtn button {
height: 46px !important;
font-size: 16px !important;
font-weight: 600 !important;
min-width: 200px !important;
}
.small-muted {
opacity: 0.8;
font-size: 12px;
}
/* Ingested sources list-style */
.sources-list table {
border: none !important;
background: transparent !important;
}
.sources-list th {
display: none !important;
}
.sources-list td {
border: none !important;
padding: 6px 0 !important;
font-size: 14px !important;
}
.report-files-list table {
border: none !important;
background: transparent !important;
}
.report-files-list td {
border: none !important;
padding: 6px 0 !important;
}
|