Spaces:
Paused
Paused
File size: 2,613 Bytes
53235cb 0fb948a 53235cb af63a14 53235cb af63a14 c6d4eb8 af63a14 73e0ab4 af63a14 c6d4eb8 af63a14 c6d4eb8 af63a14 c6d4eb8 af63a14 c6d4eb8 af63a14 c6d4eb8 af63a14 53235cb |
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 |
body {
background-color: #ffffff;
color: #454545;
}
.container-fluid {
padding-left: 0;
padding-right: 0;
}
.row {
margin-left: 0;
margin-right: 0;
}
/* Left pane styles */
.col-3 {
background-color: #eeeeee;
padding: 15px;
border-radius: 5px;
}
/* Right pane styles */
.col-9 {
background-color: white;
padding: 15px;
border-radius: 5px;
}
/* Remove underlines from all text */
a, a:hover, a:focus, button, .btn-link {
text-decoration: none !important;
}
.btn-primary {
background-color: #1C304A;
border-color: #1C304A;
}
.btn-primary:hover {
background-color: #116F70;
border-color: #116F70;
}
.btn-secondary {
background-color: #116F70;
border-color: #116F70;
}
.btn-secondary:hover {
background-color: #00AEAF;
border-color: #00AEAF;
}
.btn-success {
background-color: #28a745;
border-color: #28a745;
}
.btn-success:hover {
background-color: #218838;
border-color: #1e7e34;
}
/* Custom button styles */
.custom-button {
text-align: left;
padding: 10px;
margin-bottom: 5px;
border-radius: 5px;
transition: background-color 0.3s;
color: #1C304A;
}
.custom-button:hover {
background-color: #DEF4F4;
}
/* File upload area */
#upload-document {
border: 1px dashed #E0E0E0;
border-radius: 5px;
padding: 10px;
text-align: center;
margin-bottom: 15px;
}
/* File list styles */
#file-list > div {
background-color: #FFFFFF;
padding: 5px;
margin-bottom: 5px;
border-radius: 3px;
display: flex;
align-items: center;
}
#file-list button {
background-color: #E0E0E0;
border: none;
border-radius: 50%;
width: 20px;
height: 20px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 10px;
cursor: pointer;
}
#file-list button:hover {
background-color: #1C304A;
color: white;
}
/* Document preview area */
#document-preview {
background-color: #FFFFFF;
border: 1px solid #E0E0E0;
border-radius: 5px;
padding: 15px;
margin-bottom: 15px;
}
/* Chat input and button */
#chat-input {
border-color: #E0E0E0;
}
#btn-send-chat {
margin-left: 10px;
}
/* Loading indicator */
.dash-spinner {
margin: 0 auto;
}
/* Markdown content */
.markdown-body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
word-wrap: break-word;
}
/* Ensure buttons don't wrap text */
.btn {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} |