.fab-chat {
  background-color: var(--success-color);
}

.fab-chat:hover {
  background-color: #3d8b40;
}

/* Chat FAB attention animation */
.fab-chat {
  background: linear-gradient(135deg, #007bff, #00b4d8);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

.fab-chat:hover {
  transform: scale(1.1);
}

/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0,123,255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0,123,255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0,123,255, 0);
  }
}

.chat-body::before {
  content: "Mich AI Version 1.0.0";
  display: block;       /* puts it on its own line */
  font-style: italic;   /* makes it italic */
  font-size: 14px;      /* slightly smaller than normal text */
  margin-bottom: 4px;   /* space between this and the chat message */
}