.chat-integrations {
  display: flex;
  gap: 8px;  /* Space between icons */
}

.chat-integration-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border-radius: 50%;
  transition: opacity 0.2s ease;
}

.chat-integration-link:hover {
  opacity: 0.8;
}

.chat-integration-link img {
  width: 24px;
  height: 24px;
}