#camp-ai-widget-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  user-select: none;
  touch-action: none;

  background: linear-gradient(135deg, #fbc2eb, #a6c1ee);

  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  z-index: 99999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

#camp-ai-widget-button:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

#camp-ai-widget-panel {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 340px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  z-index: 99999;
  display: none;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

#camp-ai-widget-panel.active {
  display: block;
}

.camp-ai-header {
  background: linear-gradient(135deg, #fbc2eb, #a6c1ee);
  color: #fff;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.camp-ai-title {
  font-size: 15px;
  font-weight: 600;
}

.camp-ai-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.camp-ai-body {
  padding: 14px;
}

.camp-ai-label {
  font-size: 13px;
  color: #444;
  margin-bottom: 8px;
  display: block;
}

#camp-ai-command {
  width: 100%;
  min-height: 90px;
  resize: none;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  box-sizing: border-box;
  outline: none;
}

.camp-ai-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
}

#camp-ai-send {
  background: linear-gradient(135deg, #fbc2eb, #a6c1ee);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}

#camp-ai-send:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

#camp-ai-result {
  margin-top: 12px;
  padding: 10px;
  background: #f3f4f6;
  border-radius: 8px;
  font-size: 13px;
  color: #222;
  min-height: 20px;
}