
.chat-container {
    width: 350px;
    height: 500px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-header {
    background-color: #1A76D1;
    padding: 15px;
    color: #fff;
    text-align: center;
    font-size: 1.2em;
}

.chat-box {
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ccc;
}

.chat-input-container {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ccc;
    background-color: #fff;
}

#message-input {
    flex-grow: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#send-btn {
    padding: 8px 15px;
    background-color: #1A76D1;
    border: none;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.message {
    margin-bottom: 10px;
}

.message .sender {
    font-weight: bold;
    color: #1A76D1;
}

.message .text {
    margin-left: 10px;
    background-color: #f1f1f1;
    padding: 8px;
    border-radius: 4px;
    max-width: 70%;
}

.message .text.received {
    background-color: #e0e0e0;
}

.message .text.sent {
    background-color: #1A76D1;
    color: white;
}

.h4live{
	color: white;
}