drguilhermeapolinario
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -108,8 +108,8 @@ def apply_neumorphic_style():
|
|
108 |
|
109 |
/* Estilo para imagens */
|
110 |
img {
|
111 |
-
width:
|
112 |
-
height:
|
113 |
overflow: hidden;
|
114 |
position: relative;
|
115 |
object-fit: cover;
|
@@ -1188,9 +1188,16 @@ elif selected == "Tratamentos":
|
|
1188 |
|
1189 |
elif selected == "Efeitos Colaterais":
|
1190 |
st.title("🧠 Efeitos Colaterais e Receptores Associados")
|
1191 |
-
|
1192 |
-
st.
|
1193 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1194 |
# Dados dos efeitos colaterais e receptores associados
|
1195 |
receptor_effects = {
|
1196 |
"Serotoninérgicos (5-HT)": {
|
@@ -1328,9 +1335,11 @@ elif selected == "Efeitos Colaterais":
|
|
1328 |
st.write(
|
1329 |
pd.DataFrame(data, columns=columns).to_html(index=False), unsafe_allow_html=True
|
1330 |
)
|
1331 |
-
|
1332 |
# Visualização interativa
|
|
|
1333 |
st.subheader("📊 Comparação de Efeitos Colaterais entre Receptores")
|
|
|
1334 |
effect_options = list(set([effect for receptor in receptor_effects.values() for effect in receptor["Efeitos"].keys()]))
|
1335 |
selected_effects = st.multiselect("🔍 Selecione os efeitos colaterais para comparar:", effect_options)
|
1336 |
|
@@ -1351,7 +1360,7 @@ elif selected == "Efeitos Colaterais":
|
|
1351 |
|
1352 |
# Considerações especiais
|
1353 |
st.subheader("⚠️ Considerações Especiais")
|
1354 |
-
|
1355 |
col1, col2, col3 = st.columns(3)
|
1356 |
with col1:
|
1357 |
with st.expander("💊 Interações Medicamentosas", expanded=False):
|
@@ -1426,4 +1435,4 @@ text-align: center;
|
|
1426 |
<p>Desenvolvido por <a style='display: block; text-align: center;' href="https://dr-guilhermeapolinario.com/Dr.+Guilherme+Apolin%C3%A1rio" target="_blank">Dr. Guilherme Apolinário</a></p>
|
1427 |
</div>
|
1428 |
"""
|
1429 |
-
st.markdown(footer,unsafe_allow_html=True)
|
|
|
108 |
|
109 |
/* Estilo para imagens */
|
110 |
img {
|
111 |
+
width: 400px;
|
112 |
+
height: 200px;
|
113 |
overflow: hidden;
|
114 |
position: relative;
|
115 |
object-fit: cover;
|
|
|
1188 |
|
1189 |
elif selected == "Efeitos Colaterais":
|
1190 |
st.title("🧠 Efeitos Colaterais e Receptores Associados")
|
1191 |
+
add_vertical_space(3)
|
1192 |
+
cp1,cp2,cp3 = st.columns([1,1,1])
|
1193 |
+
with cp1:
|
1194 |
+
st.image("ser.jpg")
|
1195 |
+
with cp2:
|
1196 |
+
st.image("nor.jpg")
|
1197 |
+
|
1198 |
+
with cp3:
|
1199 |
+
st.image("dop.jpg")
|
1200 |
+
add_vertical_space(3)
|
1201 |
# Dados dos efeitos colaterais e receptores associados
|
1202 |
receptor_effects = {
|
1203 |
"Serotoninérgicos (5-HT)": {
|
|
|
1335 |
st.write(
|
1336 |
pd.DataFrame(data, columns=columns).to_html(index=False), unsafe_allow_html=True
|
1337 |
)
|
1338 |
+
add_vertical_space(3)
|
1339 |
# Visualização interativa
|
1340 |
+
|
1341 |
st.subheader("📊 Comparação de Efeitos Colaterais entre Receptores")
|
1342 |
+
add_vertical_space(1)
|
1343 |
effect_options = list(set([effect for receptor in receptor_effects.values() for effect in receptor["Efeitos"].keys()]))
|
1344 |
selected_effects = st.multiselect("🔍 Selecione os efeitos colaterais para comparar:", effect_options)
|
1345 |
|
|
|
1360 |
|
1361 |
# Considerações especiais
|
1362 |
st.subheader("⚠️ Considerações Especiais")
|
1363 |
+
add_vertical_space(2)
|
1364 |
col1, col2, col3 = st.columns(3)
|
1365 |
with col1:
|
1366 |
with st.expander("💊 Interações Medicamentosas", expanded=False):
|
|
|
1435 |
<p>Desenvolvido por <a style='display: block; text-align: center;' href="https://dr-guilhermeapolinario.com/Dr.+Guilherme+Apolin%C3%A1rio" target="_blank">Dr. Guilherme Apolinário</a></p>
|
1436 |
</div>
|
1437 |
"""
|
1438 |
+
st.markdown(footer,unsafe_allow_html=True)
|