﻿.chat-container {
    width: 800px;
}

.message {
    padding: 5px;
    margin: 5px;
    margin-left: -10px;
    margin-right: 506px;
    margin-top: 25px;
    margin-bottom: -15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    clear: both;
}
.user-info {
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
}

.info-item {
    margin-bottom: 10px;
}

.label {
    font-weight: bold;
    margin-right: 10px;
}
.date-label {
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
}
.value {
    color: #333; /* Set the color as per your design */
}

.message.left {
    float: left;
    background-color: #f1f1f1;
    width: 55%;
    display: flex;
    flex-wrap: nowrap;
    align-content: stretch;
    justify-content: space-evenly;
    align-items: baseline;
    flex-direction: column;
    margin-left: 28px;
    width: 60%;
}

.message.right {
    float: right;
    width: 57%;
    margin-right: 3%;
    background-color: #e5f5e5;
    display: flex;
    align-content: stretch;
    flex-direction: column;
}

.message-status {
    font-size: 0.8rem;
    color: #888;
    float: right;
    margin-right: 6%;
    margin-top: 15px;
    clear: both;
}
.container {
    width: 106%;
    max-width: 836px; /* Adjust the maximum width as needed */
    margin: 0;
    box-sizing: border-box;
    padding-top: 10px;
    padding-bottom: 10px;
}
/*.containerV1 {
    width: 100%;
    max-width: 600px;*/ /* Adjust the maximum width as needed */
    /*margin: 0 auto;
    box-sizing: border-box;
    padding-top: 10px;
    padding-bottom: 10px;
}
.containerV2 {
    width: 106%;
    margin: 0;
    max-height: 850px;
    overflow-y: auto;
    box-sizing: border-box;
    padding-top: 10px;
    padding-bottom: 10px;
}*/
/* Additional styling for illustration purposes */
.content {
    background-color: #ffffff;
    border: 1px solid #fff;
    margin-top: -19px;
    padding: 4px;
}
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    position: relative;
    width: 300px;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}
.date {
    font-size: 12px; /* Adjust the font size as needed */
    color: #888; /* Adjust the text color as needed */
    /* Add more styling properties as desired */
}
.list-group-item {
    margin-bottom: 10px; /* Adjust the margin as needed */
    border-radius: 8px; /* Optional: Add border-radius for rounded corners */
}
