#law-chatbot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
  }
  #chatbot-window {
    display: none;
    width: 320px;
    background: #222;
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px #000a;
    padding: 16px;
  }
  #chatbot-messages {
    max-height: 300px;
    overflow-y: auto;
    font-size: 15px;
  }
  #chatbot-buttons {
    margin-top: 12px;
  }
  #chatbot-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1e90ff;
    color: #fff;
    border: none;
    font-size: 28px;
    box-shadow: 0 2px 8px #000a;
    cursor: pointer;
  }
  #chatbot-buttons button {
    margin: 4px 4px 0 0;
    background: #1e90ff;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
  }
  #chatbot-buttons input[type="tel"] {
    width: 90%;
    margin-top: 8px;
    padding: 6px;
    border-radius: 4px;
    border: 1px solid #ccc;
  }
