.hyperagent-bubble {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  z-index: 9999;
}

.hyperagent-bubble:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hyperagent-chat-window {
  z-index: 9999;
  animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hyperagent-chat-window textarea {
  transition: border-color 0.2s ease;
}

.hyperagent-chat-window textarea:focus {
  outline: none;
  border-color: currentColor;
}

.hyperagent-chat-window button {
  transition: opacity 0.2s ease;
}

.hyperagent-chat-window button:hover {
  opacity: 0.9;
}

.hyperagent-chat-window button:active {
  transform: scale(0.98);
} 