/* Chatbox styles - extracted to standalone file */
#chatbox-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  overflow: hidden;
  display: none;
  flex-direction: column;
  z-index: 1000;
}
#chatbox-header {
  background: #0067e0;
  color: white;
  padding: 10px 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#chatbox-messages {
  height: 350px;
  overflow-y: auto;
  padding: 10px;
  font-size: 14px;
}
#chatbox-input {
  display: flex;
  border-top: 1px solid #ddd;
}
#chatbox-input input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
}
#chatbox-input button {
  background: #0067e0;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}
#chatbox-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0067e0;
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 24px;
  cursor: pointer;
  z-index: 9999 !important;
  display: block !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18) !important;
}

.bot-message a {
  color: #2563eb;
  text-decoration: underline;
}
.bot-message ul, .bot-message ol {
  margin-left: 1rem;
  margin-bottom: 0.5rem;
}
.bot-message strong {
  font-weight: 600;
}


/* Ensure container overlays other fixed elements when opened */
#chatbox-container{z-index:10000}
