File size: 3,852 Bytes
e08d6ea
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33f4958
e08d6ea
 
 
26e4174
e08d6ea
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33f4958
e08d6ea
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c3d4cb6
 
 
 
 
 
 
e08d6ea
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
.main {
    @media only screen and (min-width: 1000px) { 
        width: 70% !important;
        margin: 0 auto; /* Center the container */
    }
}

.small-font{
  font-size: 12pt !important;
  transition: font-size 0.4s ease-out; 
  transition-delay: 0.8s;
}

.small-font:hover {
  font-size: 20px !important;
  transition: font-size 0.3s ease-out;
  transition-delay: 1.5s;
}

.group {
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  border: 2px dashed gray;
  border-radius: 20px;
  box-shadow: 5px 3px 10px 1px rgba(0, 0, 0, 0.4) !important;
}

.accordion > button > span{
  font-size: 12pt !important;
}

.accordion {
  border-style: dashed !important;
  border-left-width: 2px !important;
  border-bottom-width: 2.5px !important;
  border-top: none !important;
  border-right: none !important;
  box-shadow: none !important;
}

.no-gap {
    gap: 0px;
}

.no-radius {
    border-radius: 0px;    
}

.textbox-no-label > label > span {
    display: none;
}

.exp-type > span {
    display: none;
}

.conv-type > span {
    display: none;
}

.conv-type .wrap:nth-child(3) {
    width: 167px;
    margin: auto;    
}

button {
    font-size: 10pt !important;
}

h3 {
    font-size: 13pt !important;
}

#control-panel {
    margin-bottom: 30px;
}

#chatbot {
    background-color: white;
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    height: 600px;
    width: 80%;

    position: fixed;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000; /* Or a high enough value to stay on top */    

    @media (max-width: 768px) { /* Adjust this breakpoint as needed */
        width: 95%; 
    }

    @media (prefers-color-scheme: dark) {
        background-color: dimgrey;
    }    
}

#chat-button {
    border-radius: 30px;
    font-size: 13pt !important;

    @media only screen and (min-width: 500px) { 
        font-size: 10pt;
        margin: auto; /* Center the container */
    }
}

#chatbot-inside {
    height: 100% !important;
    border-width: 1px !important;
    border-color: lightgray !important;
}

#chatbot-txtbox {
    padding-bottom: 25px;
}

#chatbot-bottm {
    padding-left: 10px;
    padding-right: 10px;
}

#chatbot-right-button {
    float: right;
    width: 20px;
    font-size: 17pt;
}

#chatbot-info {
    word-break: break-word;
}

#chatbot-back {
    position: absolute; /* Stay in place even when scrolling */
    z-index: 1000; /* Ensure it's on top of everything else */
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;

    opacity: 0;
    visibility: hidden; /* Ensures the element is not interactive */
    transition: opacity 0.5s ease, visibility 0s 0.5s; /* Transition for opacity and delay visibility */
}

#chatbot-back.visible {
    opacity: 1;
    visibility: visible; /* Now visible and interactive */
    transition: opacity 0.5s ease; /* Smooth transition for opacity */
}

.hover-opacity {
  opacity: 0.8;  /* Normal opacity of the element */
  transition: opacity 0.3s ease-in-out;  /* Smooth opacity change */
}

.hover-opacity:hover {
  opacity: 1;  /* Full opacity on hover */
}

.markdown-center {
    display: block;
    text-align: center;
}

#link-md {
    display: flex;
    justify-content: space-around;
}

#link-md a {
    display: inline-block;
    vertical-align: middle;
}

#link-md a {
    display: inline-block;
    vertical-align: middle;
}

#link-md a:nth-child(1) {
    margin-right: 10px;
    @media only screen and (max-width: 1000px) { 
        margin-right: 0px;
    }
}

#link-md a:nth-child(2) {
    margin-left: 10px;
    @media only screen and (max-width: 1000px) { 
        margin-left: 0px;
    }
}

#duplicate-button {
    margin: auto;
    color: white;
    background: #1565c0;
    border-radius: 100vh;    
}