.chat_container {
  max-width: 800px;
  margin: auto;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
  border: 1px solid #b9b9b9;
  border-radius: 15px;
}

.message-row {
  display: flex;
  align-items: flex-end;
  margin-bottom: 20px;
}

.message-row.user {
  flex-direction: row-reverse;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin: 0 10px;
}

.avatar.company {
  background-image: url('images/logo_chat.png'); /* replace with real logo */
  background-color: #d4c09200;
  margin-bottom: 20px;
}

.avatar.user {
  background-image: url('images/cliente.png'); /* replace with user icon */
  background-color: #ffffff;
}

.bubble {
  max-width: 60%;
  padding: 1rem;
  border-radius: 10px;
  position: relative;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.company .bubble {
  background-color: #d4c092;
  color: white;
}

.company .bubble::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 10px;
  border: 10px solid transparent;
  border-right-color: #d4c092;
}

.user .bubble {
  background-color: #444;
  color: white;
}

.user .bubble::before {
  content: '';
  position: absolute;
  right: -10px;
  top: 10px;
  border: 10px solid transparent;
  border-left-color: #444;
}

.interface{
    background-color: #1D1E22 ;
    width: 100%;
    height: 40px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: row;
    gap: 5px;
    padding-left: 1px;
    padding-right: 1px;
    margin-left: -1px;
}

.red_circle{
    margin-top: 10px;
    background-color: #EC6B41;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    margin-left: 10px;
}

.yellow_circle{
    margin-top: 10px;
    background-color: #F5C74F;
    width: 20px;
    height: 20px;
    border-radius: 20px;
}

.green_circle{
    margin-top: 10px;
    background-color: #61C554;
    width: 20px;
    height: 20px;
    border-radius: 20px;
}