
.chat-container {
 
   
    font-size: 15px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative; /* tambahkan properti ini */
}
/* .chat-container {
    max-width: 100%;
    margin: 50px auto;
    font-size: 15px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative; 
} */

.message-container {
    display: flex;
    flex-direction: column;
}

.message {
    position: relative; /* tambahkan properti ini */
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    max-width: 70%;
    word-wrap: break-word;
    display: flex;
    align-items: center;
}

.sender-message {
    background-color: #696cff ;
    color: white;
    align-self: flex-end;
    text-align: right; /* ubah menjadi right */
}

.receiver-message {
    /* background-color: #4CAF50; */
    background-color: #e0e0e0;

    /* color: #fff; */
    color: #000;
    align-self: flex-start;
    text-align: left; /* ubah menjadi left */
}

.avatar_chat {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.message input {
    width: calc(100% - 20px);
    padding: 8px;
    margin: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.message button {
    padding: 8px;
    margin: 10px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.message-date {
    white-space: nowrap;
    font-size: 12px;
    color: #666;
  
    margin-right: 0px; /* ubah menjadi right */
    margin-left: 0px;
    margin-bottom: 5px;
    position: absolute;
    bottom: -25px; /* sesuaikan dengan kebutuhan */
}
.sender-message .message-date {
    right: 0; /* rata kanan untuk sender-message */
}
.receiver-message .message-date {
    left: 0; /* rata kiri untuk receiver-message */
}

