.ai-adam-container {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  z-index: 1000;
}

#adam-avatar {
  height: 80px;
  /* Removed width so aspect ratio is preserved */
  max-width: 80px;
  display: block;
}

.speech-bubble {
  max-width: 250px;
  padding: 10px 15px;
  background-color: #f0f0f0;
  border-radius: 15px;
  position: relative;
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  line-height: 1.4;
}

.speech-bubble::after {
  content: '';
  position: absolute;
  top: 15px;
  left: -10px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-right-color: #f0f0f0;
}
