
.chatbot-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #0d151e81;
  }
  
  .chatbot-container {
    background-color: #1a1f29;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 40%;
    color: #fff;
    border: 1px solid #8be9fd;
    box-shadow: 0px 0px 15px rgba(77, 163, 255, 0.5); 
  }
  
  .chatbot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .chatbot-header h2 {
    margin: 0;
    font-size: 1.5em;
    color: #ff79c6;
  }
  
  .close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .chatbot-chat-window {
    max-height: 300px;
    overflow-y: auto;
    background-color: #1a1f29;
    margin-top: 20px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #444;
  }
  
  .chatbot-input-area {
    margin-top: 10px;
    display: flex;
    align-items: center;
  }
  
  .chatbot-input-area input {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    background-color: #1a1f29;
    border: 1px solid #8be9fd;
    color: #fff;
  }
  
  .chatbot-input-area button {
    padding: 10px 15px;
    margin-left: 10px;
    background-color: #ff79c6;
    color: rgb(23, 18, 50);
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .chatbot-message {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
  }
  
  .chatbot-message.chatbot-bot {
    background-color: #2c3a65;
    color: #fff;
    text-shadow: 0px 0px 8px rgba(139, 233, 253, 0.8); 
    text-align: left;
  }
  
  .chatbot-message.user {
    background-color: #424397;
    color: #fff;
    text-shadow: 0px 0px 8px rgba(139, 233, 253, 0.8); 
    text-align: right;
  }
  
  .chatbot-trigger a {
    cursor: pointer;
  }
  
  .chatbot-tooltip {
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    visibility: hidden;
  }
  
  .chatbot-trigger:hover .chatbot-tooltip {
    visibility: visible;
  }