#vincent-widget {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 330px;
  height: 430px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.2);
  font-family: Arial, sans-serif;
  overflow: hidden;
  z-index: 999999;
}

#vincent-header {
  background: #1f7a4d;
  color: white;
  padding: 14px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#vincent-minimize {
  background: transparent;
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

#vincent-messages {
  height: 315px;
  padding: 12px;
  overflow-y: auto;
  font-size: 14px;
}

.vincent-user {
  background: #e8f5ee;
  padding: 8px;
  margin: 8px 0;
  border-radius: 8px;
  text-align: right;
}

.vincent-bot {
  background: #f1f1f1;
  padding: 8px;
  margin: 8px 0;
  border-radius: 8px;
}

#vincent-input-area {
  display: flex;
  border-top: 1px solid #ddd;
}

#vincent-input {
  flex: 1;
  border: none;
  padding: 12px;
  font-size: 14px;
}

#vincent-input-area button {
  border: none;
  padding: 12px;
  background: #1f7a4d;
  color: white;
  cursor: pointer;
}

#vincent-launcher {
  display: block;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1f7a4d;
  color: white;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 999999;
}

#vincent-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#vincent-header-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}

#vincent-reset,
#vincent-minimize {
  background: transparent;
  border: 0;
  color: white;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
}