Spaces:
Sleeping
Sleeping
File size: 3,115 Bytes
672795b 167d1af 672795b 167d1af 672795b 167d1af 672795b 167d1af 672795b 167d1af bff0307 167d1af 672795b 167d1af bff0307 167d1af 672795b 167d1af 672795b 167d1af 672795b 167d1af 672795b 167d1af bff0307 672795b 167d1af 3bbcd66 672795b 3bbcd66 bff0307 |
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 |
/* General page styling */
body {
background-color: #002d4d; /* Dark blue background */
color: #ffffff; /* White text */
font-family: 'Century Gothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
padding: 20px;
}
/* Dashboard styling */
#dashboard {
border-right: 2px solid #d9d9d9;
padding-right: 20px;
}
#dashboard h2 {
background-color: #032d42; /* Dark blue background for headings */
color: #ffffff; /* White text */
text-align: center;
padding: 10px;
border-radius: 5px;
}
.table-responsive {
background-color: #ffffff;
color: #333333;
border: 1px solid #d9d9d9;
border-radius: 5px;
padding: 10px;
}
/* Chatbot styling */
#chatbot {
padding-left: 20px;
display: flex;
flex-direction: column;
height: 100vh;
}
#chatbot h2 {
background-color: #032d42; /* Dark blue background for headings */
color: #ffffff; /* White text */
text-align: center;
padding: 10px;
border-radius: 5px;
}
#upload-form {
margin-bottom: 20px;
display: flex;
align-items: center;
}
#upload-form .form-control-file {
flex: 1;
}
#chatbot-messages {
flex: 1;
overflow-y: auto;
background-color: #ffffff;
color: #333333;
border: 1px solid #d9d9d9;
border-radius: 5px;
padding: 10px;
}
.user-message, .bot-message {
margin-bottom: 10px;
padding: 10px;
border-radius: 5px;
}
.user-message {
text-align: left;
background-color: #d9eaff;
border: 1px solid #0052cc;
}
.bot-message {
text-align: right;
background-color: #e1e1e1;
border: 1px solid #b1b1b1;
color: #0052cc;
}
#chat-input, #chat-form button {
margin-top: 10px;
}
#chat-input {
border-radius: 5px;
border: 1px solid #d9d9d9;
padding: 10px;
width: calc(80% - 20px); /* Adjusted width to fit Send button */
display: inline-block;
}
#chat-form button, #upload-form button {
background-color: #032d42; /* Dark blue background */
color: #ffffff; /* White text */
border: none;
border-radius: 5px;
padding: 10px 20px;
display: inline-block;
vertical-align: top;
margin-left: 10px; /* Add some space between the buttons */
}
#chat-form button:hover, #upload-form button:hover {
background-color: #021a2b;
}
/* Answer panel styling */
#answer-panel {
margin-top: 20px;
display: flex;
flex-direction: column;
}
#answer-text {
margin-bottom: 20px;
}
#answer-content {
display: flex;
justify-content: space-between;
align-items: center;
}
#answer-justification {
flex: 1;
padding-right: 20px;
}
#answer-image {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
}
#answer-image img {
max-width: 100%;
height: auto;
}
.panel {
margin-top: 20px;
padding: 10px;
border: 1px solid #d9d9d9;
border-radius: 5px;
background-color: #ffffff;
}
.panel h3 {
background-color: #032d42; /* Dark blue background for headings */
color: #ffffff; /* White text */
text-align: center;
padding: 10px;
border-radius: 5px;
}
|