Spaces:
Sleeping
Sleeping
File size: 1,335 Bytes
c3af845 |
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 |
css = """
.container {
max-width: 1200px;
margin: auto;
padding: 20px;
}
.results {
padding: 20px;
border: 1px solid #ddd;
border-radius: 8px;
margin-top: 20px;
}
.confidence-high {
color: #22c55e;
font-weight: bold;
}
.confidence-low {
color: #f97316;
font-weight: bold;
}
.entity-section {
margin: 15px 0;
}
.alert-warning {
background: #fff3cd;
padding: 10px;
border-radius: 5px;
margin: 10px 0;
}
.alert-success {
background: #d1fae5;
padding: 10px;
border-radius: 5px;
margin: 10px 0;
}
.related-events {
background: #f3f4f6;
padding: 15px;
border-radius: 5px;
margin-top: 15px;
}
.grid {
display: grid;
}
.grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.gap-4 {
gap: 1rem;
}
.space-y-4 > * + * {
margin-top: 1rem;
}
.mt-4 {
margin-top: 1rem;
}
.mb-2 {
margin-bottom: 0.5rem;
}
.text-blue-600 {
color: #2563eb;
}
.text-gray-600 {
color: #4b5563;
}
.text-sm {
font-size: 0.875rem;
line-height: 1.25rem;
}
.bg-gray-50 {
background-color: #f9fafb;
}
.rounded-lg {
border-radius: 0.5rem;
}
.p-4 {
padding: 1rem;
}
""" |