File size: 3,210 Bytes
f8d35c2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
/* Main container */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.papers-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}

/* Paper card styling */
.paper-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.paper-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #d0d0d0;
}

.paper-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
}

.paper-title a {
    color: #2563EB;
    text-decoration: none;
}

.paper-title a:hover {
    text-decoration: underline;
}

.paper-tldr {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.5;
    margin: 8px 0;
}

.paper-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.meta-item {
    background-color: #F3F4F6;
    border-radius: 16px;
    padding: 4px 12px;
    font-size: 12px;
    color: #4B5563;
    font-weight: 500;
}

/* Section colors */
.meta-item:nth-child(1) {
    background-color: #DBEAFE;
    color: #1E40AF;
}

.meta-item:nth-child(2) {
    background-color: #FEE2E2;
    color: #991B1B;
}

.meta-item:nth-child(3) {
    background-color: #E0E7FF;
    color: #3730A3;
}

/* Search interface */
.search-container {
    margin-bottom: 24px;
    padding: 16px;
    background-color: #F9FAFB;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

/* Button styling */
.primary-button {
    background-color: #2563EB;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.primary-button:hover {
    background-color: #1D4ED8;
}

/* Section headers */
.section-header {
    border-bottom: 2px solid #E5E7EB;
    padding-bottom: 8px;
    margin: 32px 0 16px 0;
    font-weight: 600;
    color: #1F2937;
}

/* Responsive design */
@media (max-width: 768px) {
    .paper-card {
        padding: 16px;
    }
    
    .paper-title {
        font-size: 16px;
    }
    
    .paper-tldr {
        font-size: 13px;
    }
    
    .meta-item {
        font-size: 11px;
        padding: 3px 10px;
    }
}

/* Gradio container customization */
.gradio-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Results count styling */
p strong {
    color: #2563EB;
}

/* Accordion styling */
.accordion .label {
    font-weight: 600;
    color: #1F2937;
}

/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background-color: #F3F4F6;
    text-align: left;
    padding: 12px;
    font-weight: 600;
}

td {
    padding: 12px;
    border-bottom: 1px solid #E5E7EB;
}

/* Examples styling */
.examples-panel {
    margin-top: 24px;
    padding: 16px;
    background-color: #F9FAFB;
    border-radius: 12px;
}

.examples-header {
    font-weight: 600;
    margin-bottom: 12px;
}