| body
|
| {
|
| font-family: Arial;
|
| background: #f4f4f4;
|
| margin: 40px;
|
| }
|
|
|
| h1
|
| {
|
| text-align: center;
|
| }
|
|
|
| #authSection
|
| {
|
| background: white;
|
| padding: 20px;
|
| width: 400px;
|
| margin: auto;
|
| border-radius: 8px;
|
| }
|
|
|
| #mainApp
|
| {
|
| margin-top: 30px;
|
| }
|
|
|
| input
|
| {
|
| width: 100%;
|
| padding: 10px;
|
| margin-top: 10px;
|
| font-size: 18px;
|
| }
|
|
|
| button
|
| {
|
| padding: 10px;
|
| margin-top: 10px;
|
| cursor: pointer;
|
| }
|
|
|
| #chatWindow
|
| {
|
| height: 400px;
|
| background: white;
|
| overflow-y: auto;
|
| padding: 10px;
|
| border-radius: 8px;
|
| }
|
|
|
| .userMessage
|
| {
|
| text-align:left;
|
| color:blue;
|
| margin:5px;
|
| font-family:Calibri;
|
| font-size:28px;
|
| }
|
|
|
| .botMessage
|
| {
|
| text-align: left;
|
| color:black;
|
| margin:5px;
|
| font-family:Arial;
|
| font-size:20px;
|
| }
|
|
|
| #chatControls
|
| {
|
| margin-top: 10px;
|
| display: flex;
|
| gap: 10px;
|
| }
|
|
|
| #chatControls
|
| {
|
| margin-top: 10px;
|
| display: flex;
|
| gap: 10px;
|
| }
|
|
|
|
|
| .ref-section
|
| {
|
| display: flex;
|
| align-items: center;
|
| gap: 20px;
|
| margin-top: 25px;
|
| flex-wrap: nowrap;
|
| }
|
|
|
| .ref-section label
|
| {
|
| display: flex;
|
| align-items: center;
|
| gap: 8px;
|
| white-space: nowrap;
|
| }
|
|
|
|
|
| .ref-section input[type="checkbox"]
|
| {
|
| margin: 0;
|
| transform: translateY(-1px);
|
| }
|
|
|
| .model-row
|
| {
|
| display: flex;
|
| gap: 10px;
|
| align-items: center;
|
| margin-top: -15px;
|
| }
|
|
|
| .model-row select
|
| {
|
| width: 250px;
|
| height: 36px;
|
| font-size: 16px;
|
| }
|
|
|
| .model-row button
|
| {
|
| height: 36px;
|
| padding: 0 15px;
|
| white-space: nowrap;
|
| display: flex;
|
| align-items: center;
|
| }
|
|
|
|
|
|
|
| #modelSelect
|
| {
|
| transform: translateY(2px);
|
| }
|
|
|
|
|
|
|
| .ref-section input[type="checkbox"]
|
| {
|
| transform: scale(1.5);
|
| margin: 0;
|
| } |