Spaces:
Sleeping
Sleeping
File size: 733 Bytes
a3d7657 b1ed3a1 64fda9c b1ed3a1 64fda9c b1ed3a1 64fda9c |
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 |
/* styles.css */
#chatbot .message {
direction: rtl;
text-align: right;
}
#title {
text-align: right;
font-size: 24px;
color: darkblue;
direction: rtl;
margin-right: 20px;
}
#chatbot .wrap {
direction: rtl;
text-align: right;
white-space: pre-wrap; /* Allows normal wrapping */
word-wrap: break-word; /* Ensures long words break instead of overflowing */
max-width: 800px; /* Optional: limit message width */
margin: 0 auto; /* Center the messages container */
}
#input-box {
border: 2px solid blue;
padding: 10px;
direction: rtl;
text-align: right;
}
#clear-btn {
background-color: red;
color: white;
font-weight: bold;
}
|