Spaces:
Paused
Paused
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 ; | |
} | |
.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; | |
} |