.row.modify {
  display: flex;
  flex-wrap: wrap;
}

.col.modify {
  display: flex;
  flex-direction: column;
}

.col.modify .card.modify {
  flex-grow: 1;
}

.chat_bubble{
  background-color: var(--bg-card-container);
  color: var(--text-color);
  transition: background-color 0.3s, color 0.3s;
  box-shadow: 0 3px 5px 0 var(--box-shadow);
}

.content_central_div_languages_center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.content_central_div_languages_left {
    display: flex;
    justify-content: left;
    align-items: center;
}
.content_central_div_languages_right {
    display: flex;
    justify-content: right;
    align-items: center;
}