css file
css file
margin: 0;
padding: 0;
background-color: #f0f0f0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
.chat-container {
width: 100%;
max-width: 400px;
background: white;
border-radius: 10px;
overflow: hidden;
.chat-header {
background: #007bff;
color: white;
text-align: center;
padding: 15px;
font-size: 18px;
font-weight: bold;
}
.chat-box {
height: 400px;
overflow-y: auto;
padding: 10px;
background: #f9f9f9;
.message {
margin: 10px 0;
padding: 10px;
border-radius: 8px;
max-width: 80%;
.message.sent {
background: #007bff;
color: white;
margin-left: auto;
.message.received {
background: #e0e0e0;
color: black;
margin-right: auto;
}
.chat-input {
display: flex;
padding: 10px;
background: #fff;
.chat-input input {
flex: 1;
padding: 10px;
border-radius: 5px;
margin-right: 10px;
.chat-input button {
background: #007bff;
color: white;
border: none;
padding: 10px;
border-radius: 5px;
cursor: pointer;