Spaces:
Running
Running
File size: 948 Bytes
0d24772 |
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 |
/* Arabic font and RTL support */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');
.rtl-text {
direction: rtl;
text-align: right;
font-family: 'Cairo', sans-serif;
}
/* Custom styling for the app */
.stApp {
direction: rtl;
font-family: 'Cairo', sans-serif;
}
.stTextArea {
direction: rtl;
}
.stButton button {
font-family: 'Cairo', sans-serif;
direction: rtl;
}
.stTab {
font-family: 'Cairo', sans-serif;
}
/* Legal response formatting */
.legal-response {
background-color: #f8f9fa;
border-radius: 5px;
padding: 15px;
margin: 10px 0;
border-right: 4px solid #2e7d32;
}
.legal-reference {
color: #1976d2;
font-weight: bold;
}
/* Category badges */
.category-badge {
background-color: #e3f2fd;
color: #1976d2;
padding: 5px 10px;
border-radius: 15px;
font-size: 0.8em;
margin: 5px;
display: inline-block;
} |