body {
  font-family: "Inter", sans-serif;
  background-color: #f3f4f6;
}
.scrollable-list {
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
}
.scrollable-chat {
  max-height: calc(100vh - 12rem);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
/* Message bubble styling */
.message-bubble {
    max-width: 70%;
    padding: 8px 12px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.4;
}

/* Container for a message row */
.message-row {
    display: flex; /* Enables flexbox for alignment */
    align-items: flex-end; /* Aligns items to the bottom */
    margin-bottom: 10px;
}

/* Align agent messages to the left */
.message-row.agent {
    justify-content: flex-end; 
}

/* Align user messages to the right */
.message-row.user {
    justify-content: flex-start;
}

/* Message bubble styling */
.message-bubble {
    max-width: 70%;
    padding: 8px 12px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.4;
}

/* Agent bubble */
.message-row.agent .message-bubble {
    background: #f1f3f5;
    color: #212529;
    border-bottom-left-radius: 4px;
    margin-left: 8px;
}

/* User bubble */
.message-row.user .message-bubble {
    background: #0d6efd;
    color: #fff;
    border-bottom-right-radius: 4px;
    margin-right: 8px;
}

.avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
}

.system-message {
    font-size: 12px;
    color: #6c757d;
    text-align: center;
    margin: 6px 0;
}

.bubble-wrapper {
    max-width: 70%;
}

.bubble-wrapper .text-xs {
    font-size: 11px;
    color: #999;
}


