.lov-chat-widget {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 8px;
  max-width: 420px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
}

.lov-chat-layout {
  display: flex;
  gap: 8px;
}

.lov-chat-contacts {
  width: 70px;
  border-right: 1px solid #eee;
  padding-right: 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lov-chat-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lov-chat-header {
  font-weight: 600;
  margin-bottom: 4px;
}

.lov-chat-status {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}

.lov-chat-messages {
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 6px;
  height: 200px;
  overflow-y: auto;
  margin-bottom: 8px;
  background: #fafafa;
}

.lov-chat-message {
  margin-bottom: 4px;
  display: flex;
}

.lov-chat-message-me {
  justify-content: flex-end;
}

.lov-chat-message-them {
  justify-content: flex-start;
}

.lov-chat-bubble {
  padding: 6px 8px;
  border-radius: 12px;
  max-width: 80%;
}

.lov-chat-message-me .lov-chat-bubble {
  background: #dcf8c6;
}

.lov-chat-message-them .lov-chat-bubble {
  background: #fff;
  border: 1px solid #eee;
}

.lov-chat-input-wrapper {
  display: flex;
  gap: 6px;
  align-items: center;
}

.lov-chat-input {
  flex: 1;
  resize: none;
}

.lov-chat-send-btn {
  padding: 6px 10px;
  border: none;
  border-radius: 4px;
  background: #0073aa;
  color: #fff;
  cursor: pointer;
}

.lov-chat-send-btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.lov-chat-info,
.lov-chat-error,
.lov-chat-loading {
  font-size: 13px;
}

/* Contatos (bolinhas) */

.lov-chat-contact {
  cursor: pointer;
  text-align: center;
  font-size: 11px;
  color: #555;
}

.lov-chat-contact-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin: 0 auto 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
  font-weight: 600;
}

.lov-chat-contact-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lov-chat-contact-active .lov-chat-contact-avatar {
  border: 2px solid #0073aa;
}
