
#cate-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-family: "Poppins", sans-serif;
  z-index: 9999;
}

#cate-toggle {
  background: #185155;
  color: white;
  padding: 10px 15px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#cate-box {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 480px;         
  max-width: 90vw;       
  background: white;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15); 
  padding: 16px;
  z-index: 9999;
}

#cate-messages {
  max-height: 280px;
  overflow-y: auto;
  margin-bottom: 10px;
  font-size: 14px;
  padding-right: 4px;
}

.user-msg {
  background: #e0f7fa;
  margin: 6px 0;
  padding: 8px 10px;
  border-radius: 12px;
  text-align: right;
  max-width: 85%;
  margin-left: auto;
}

.cate-msg {
  background: #f1f8e9;
  margin: 6px 0;
  padding: 8px 10px;
  border-radius: 12px;
  text-align: left;
  max-width: 85%;
}

#cate-input {
  width: 100%;
  height: 100px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ccc;
  resize: none;
  margin-bottom: 10px;
  font-size: 14px;
}

#cate-send {
  background-color: #185155;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 8px;
  cursor: pointer;
  width: auto%;
  display: block;
  margin-left: auto;
}

#cate-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 16px;
  color: #555;
  cursor: pointer;
  z-index: 10;
}

.cate-suggestions{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-top:8px;
}

.cate-chip{
  background:#185155;
  color:white;
  border:none;
  padding:6px 10px;
  border-radius:5px;
  font-size:12px;
  cursor:pointer;
  white-space:nowrap;
}

.cate-chip:hover{
  background:#154343;
}

#cate-messages::-webkit-scrollbar {
  width:6px;
}

#cate-messages::-webkit-scrollbar-thumb {
  background:#ccc;
  border-radius:3px;
}