/* Position the widget at bottom-right */
#help-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-family: 'Roboto Slab', serif; /* or your chosen font */
    z-index: 9999;
  }
  
  /* The collapsed icon */
  #help-icon {
    width: 60px;
    height: 60px;
    background: #ffb300;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
  }
  
  /* The expanded chat box */
  #help-box {
    width: 300px;
    height: 400px;
    background: #36393f;
    color: #ddd;
    display: flex;
    flex-direction: column;
    border: 1px solid #555;
    border-radius: 8px;
    overflow: hidden;
  }
  
  /* Header bar with close button */
  #help-header {
    background: #4A4E57;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  #help-header span {
    font-weight: bold;
  }
  
  #help-close {
    background: transparent;
    border: none;
    color: #ddd;
    font-size: 1.2rem;
    cursor: pointer;
  }
  
  /* Messages area */
  #help-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    font-size: 0.9rem;
  }
  
  /* Input area at bottom */
  #help-input-area {
    background: #4A4E57;
    padding: 8px;
    display: flex;
    gap: 5px;
  }
  
  #help-input {
    flex: 1;
    padding: 8px;
    border: 1px solid #555;
    background: #292b2f;
    color: #ddd;
  }
  
  #help-send {
    background: #ffb300;
    color: #000;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    font-weight: bold;
  }
  #help-send:hover {
    background: #e6a100;
  }
  
  /* Example message styling */
  .help-user-msg {
    text-align: right;
    margin: 5px 0;
  }
  
  .help-bot-msg {
    text-align: left;
    margin: 5px 0;
  }
  