.chat-icon {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: var(--third-color-heavy);
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      z-index: 1000;
    }

    .chatbot-container {
      width: 400px;
      height: 500px;
      border: 1px solid #ccc;
      border-radius: 10px;
      display: none;
      flex-direction: column;
      position: fixed;
      bottom: 80px;
      right: 20px;
      background-color: #fff;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: width 0.3s, height 0.3s;
      z-index: 999;
    }

    .chatbot-container.open {
      display: flex;
    }

    @media (max-width: 768px) {
      .chatbot-container {
        width: 90%;
        height: 70%;
        bottom: 80px;
        right: 5%;
      }
    }

    .chat-header {
      padding: 10px;
      background-color:var(--third-color-heavy);
      color: #fff;
      text-align: center;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .close-button {
      background-color: transparent;
      border: none;
      cursor: pointer;
      color: #fff;
    }

    .chat-messages {
      flex: 1;
      padding: 10px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .message {
      padding: 10px;
      border-radius: 10px;
      max-width: 70%;
      word-wrap: break-word;
    }

    .message.user {
      align-self: flex-end;
      background-color: var(--third-color-heavy);
      color: #fff;
    }

    .message.bot {
      align-self: flex-start;
      background-color: #f1f1f1;
      color: #000;
    }

    .chat-input-container {
      display: flex;
      padding: 10px;
      border-top: 1px solid #ccc;
    }

    .chat-input {
      flex: 1;
      padding: 10px;
      border-radius: 5px;
      border: 1px solid #ccc;
      outline: none;
      margin-left: 10px;
      color: var(--second-color);
    }
.chat-input:focus{
    border-color: var(--third-color-heavy);
}
    .send-button {
      padding: 10px 15px;
      background-color: var(--third-color-heavy);
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
      transform: rotate(180deg);
    }