#bjl-chatbot-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #3f050f;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 10000;
    transition: transform 0.3s;
  }
  
  #bjl-chatbot-button:hover {
    transform: scale(1.1);
  }
  
  #bjl-chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 320px;
    max-height: 480px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    background-color: white;
    display: flex;
    flex-direction: column;
    font-family: 'Arial', sans-serif;
    z-index: 9999;
    display: none;
  }
  
  #bjl-chatbot-container.open {
    display: flex;
  }
  
  .bjl-chatbot-header {
    background-color: #3f050f;
    color: white;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .bjl-chatbot-header h4 {
    margin: 0;
    font-size: 16px;
  }
  
  .bjl-close-btn {
    font-size: 20px;
    cursor: pointer;
  }
  
  .bjl-chatbot-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.5;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
  }
  
  .bjl-chatbot-body p {
    margin: 8px 0;
    padding: 8px 12px;
    border-radius: 12px;
    max-width: 80%;
    word-wrap: break-word;
  }
  
  .bjl-chatbot-body p.bot {
    background-color: #f5e8e9;
    align-self: flex-start;
    margin-right: auto;
  }
  
  .bjl-chatbot-body p.user {
    background-color: #e8c4c7;
    align-self: flex-end;
    margin-left: auto;
  }
  
  .bjl-chatbot-footer {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
    background-color: white;
  }
  
  .bjl-chatbot-footer input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 20px;
    outline: none;
    font-size: 14px;
  }
  
  .bjl-chatbot-footer button {
    margin-left: 8px;
    padding: 10px 15px;
    background-color: #3f050f;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
  }
  
  .bjl-chatbot-footer button:hover {
    background-color: #5a0714;
  }
  
  .bjl-service-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    margin: 5px 0;
    background-color: #3f050f;
    color: white;
    border: none;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    word-break: break-word;
    transition: all 0.2s ease;
  }
  
  .bjl-service-btn:hover {
    background-color: #5a0714;
  }
  
  .bjl-service-btn img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .bjl-service-btn img.loaded {
    opacity: 1;
  }
  
  .bjl-action-btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 8px 0 0;
    background-color: #3f050f;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
  }
  
  .bjl-action-btn:hover {
    background-color: #5a0714;
  }