Spaces:
Sleeping
Sleeping
/* 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; | |
} | |