File size: 2,605 Bytes
a204d40
 
 
f2e7ce4
cd331a3
a1202f9
f2e7ce4
a204d40
 
 
 
 
f2e7ce4
 
 
 
 
 
 
 
a204d40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f2e7ce4
 
a204d40
 
 
 
 
 
 
 
 
 
 
f2e7ce4
 
 
 
 
 
 
 
 
 
 
 
 
 
a204d40
 
 
 
1387ef8
a204d40
 
 
f2e7ce4
a204d40
 
1387ef8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a1202f9
 
 
 
 
 
 
cd331a3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f0f2f5;
  display: block;
  padding-top: 60px; /* Aumentado levemente para acomodar a navbar fixa */
  min-height: 100vh;
  margin: 0 auto;
}

h1 {
  text-align: left;
  color: black;
  margin-top: 10px;
}

.info-modelo {
  font-size: 10px;
  color: #666;
  margin-top: -20px;
  margin-bottom: 20px;
}

label {
  font-weight: 500;
  margin-top: 15px;
  display: block;
}

input[type="text"] {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

input[type="checkbox"] {
  margin-right: 6px;
}

.genre-label {
  display: flex;
  align-items: center;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 500;
}

button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #218838;
}

.chat-container {
  display: flex;
  justify-self: center;
  width: 80%
}

.chat-box,
.response-box {
  background-color: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 45%;
  font-size: 16px;
  line-height: 1.6;
  align-self: flex-start;
  margin: 40px;
  justify-self: center;
}

@media (max-width: 1100px) {
  .chat-container {
    flex-direction: column;
  }
  
  .chat-box, .response-box {
    width: 70%;
    align-self: center;
  }
}

.chat-container:has(.chat-box):not(:has(.response-box)) .chat-box,
.chat-container:has(.response-box):not(:has(.chat-box)) .response-box {
  width: 100%;
}

.resposta-formatada {
  font-size: 16px;
  line-height: 1.6;
}

.hidden {
    display: none;
}

.small-link {
    font-size: 0.9em;
    text-align: left;
    margin-bottom: 30px;
}

.small-link a {
    text-decoration: underline;
    color: blue;
    cursor: pointer;
}

.genre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

/* --- Navigation Bar --- */
.navbar {
  background-color: #333;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
  font-size: 17px;
  transition: background-color 0.3s;
}

.navbar a:hover {
  background-color: #ddd;
  color: black;
}

.navbar a.active {
  background-color: #28a745;
  color: white;
}