.appContainer {
    background-image: url("your-image-url.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.messageContainerCard {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: none;
}

.messageBox {
    border-radius: 10px;
    padding: 15px 15px;
}

.messagesContainer::-webkit-scrollbar {
    display: none;
  }

.messagesContainer {
    height: 60vh;
    overflow-y: scroll;
    overflow-x: hidden;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;
}
.w80{
    width: 80%;
}

.gap10{
    gap: 10px;
}

.bg-dark-2{
    background-color: #292929;
}

.messageImage{
    max-height: 150px;
    max-width: 90%;
}

.imagePreviewContainer {
    width: 100px;
    height: 100px;
    position: relative;
    margin-bottom: 10px;
    max-height: 100px;
    display: none;
}

.imagePreview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.closeIcon {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: red;
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
}

.closeIcon:hover {
    background-color: rgb(187, 54, 54);
}

.closeIcon i {
    color: white;
}
