/* CSS dla bloku karuzela-rozmowa */
.karuzela-rozmowa {
	/* Style tutaj */
}
/* Kontener karuzeli */
.conversation-carousel {
    padding: 50px 0;
    overflow: hidden;
    position: relative;
}

.main-person-img {
    object-fit: cover;
}

/* Styl dymków */
.message {
    padding: 12px 18px;
    border-radius: 20px;
    max-width: 80%;
    font-size: 0.95rem;
    line-height: 1.4;
    position: relative;
}

.msg-grey {
    background-color: #e4e6eb; /* Kolor Messengera */
    color: #050505;
    border-bottom-left-radius: 4px;
    float: left;
    clear: both;
}

.msg-blue {
    background-color: #087F8C; /* Kolor Messengera */
    color: white;
    border-bottom-right-radius: 4px;
}

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

.answer-avatar {
    width: 35px;
    height: 35px;
    object-fit: cover;
    border: 2px solid #fff;
}

.message-response {
    margin-top: 10px;
}