/* Chat Button */
    #chat-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #E11631;
      color: white;
      border: none;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      font-size: 28px;
      cursor: pointer;
      z-index: 1000;
      box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    }

    #chat-button:hover {
      background-color: #E11631;
    }

    /* Chat Box */
    #chat-box {
      display: none;
      flex-direction: column;
      position: fixed;
      bottom: 100px;
      right: 20px;
      width: 340px;
      max-height: 500px;
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
      overflow: hidden;
      z-index: 999;
      animation: slideUp 0.3s ease-out;
    }

    @keyframes slideUp {
      from {
        transform: translateY(20px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    #chat-header {
      background-color: #E11631;
      color: white;
      padding: 12px 16px;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    #chat-header button {
      background: none;
      border: none;
      color: white;
      font-size: 20px;
      cursor: pointer;
    }

    #user-info-form {
      padding: 10px 15px;
      background-color: #f9f9f9;
      border-bottom: 1px solid #eee;
    }

    #user-info-form input {
      width: 100%;
      padding: 8px;
      margin-bottom: 8px;
      font-size: 14px;
      border-radius: 6px;
      border: 1px solid #ccc;
      box-sizing: border-box;
    }

    #chat-messages {
      padding: 12px;
      flex: 1;
      overflow-y: auto;
      font-size: 14px;
      display: none; /* Hidden until form is submitted */
    }

    #chat-input {
      display: none; /* Hidden until form is submitted */
      border-top: 1px solid #eee;
    }

    #chat-input input {
      flex: 1;
      padding: 12px;
      border: none;
      outline: none;
      font-size: 14px;
    }

    #chat-input button {
      padding: 12px 16px;
      background-color: #E11631;
      border: none;
      color: white;
      cursor: pointer;
    }

    #chat-input button:hover {
      background-color: #E11631;
    }

    .user-message, .bot-message {
      margin-bottom: 10px;
      max-width: 80%;
      padding: 10px 14px;
      border-radius: 16px;
      line-height: 1.4;
      word-wrap: break-word;
    }

    .user-message {
      background-color: #dcf8c6;
      align-self: flex-end;
      margin-left: auto;
    }

    .bot-message {
      background-color: #f1f0f0;
      align-self: flex-start;
      margin-right: auto;
    }