
/* Footer message box */
.footer-message {
    color: #ddd;
    position: fixed;
    bottom: 28px;
    right: 0;
    top: 10%;
    width: 90%;
    background-color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.5s ease;
    animation: gradientBG 20s ease infinite;
    border: 4px solid; /* You must define a width and style */
    border-image-source: linear-gradient(45deg, #333, #333, #7000ff, #ff0095);
    border-image-slice: 1;
    display: none;
  }

  /* Multi-color header */
  .multi-color-header {
    width: 100%;
    height: 8px;
    background: #4DA6FF;
    position: absolute;
    top: 0;
    left: 0;
  }

  .message-container {
    max-width: 1366px;
    text-align: center;
    position: relative;
    padding: 20px;
    width: 100%;
  }

  /* h2 with thinner font using Ubuntu */
  .footer-message h2 {
    margin: 0;
    font-size: 1.8rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    color: #eee;
  }

  .footer-message p {
    font-size: 1rem;
    margin: 10px 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #ddd;
  }

  /* Bullet points */
  .bullet-points {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
    margin-top: 10px;
  }

  .bullet-points li {
    margin: 10px 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    color: #ddd;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
  }

  /* Fancy checkmark icon for bullet points */
  .bullet-points li i {
    font-size: 1.5rem;
    color: #4DA6FF;
    margin-right: 10px;
  }

  /* Close button */
  #btn-liveweave-ai-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background-color: #111;
    color: #fff;
    font-size: 1.5rem;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

    #btn-liveweave-ai-close:hover {
    background-color: #ff6347;
  }

#btn-liveweave-ai-open {
    font-size: 13px;
    position: fixed;
    right: 0;
    bottom: 0;
    height: 30px;
    padding: 6px 12px;
    width: 180px;
    cursor: pointer;
    border: none;
    color: #eee;
    outline: none;
    
    /* Transition for non-animated properties like shadow */
    transition: all 0.4s ease;
    
    /* DEFAULT STATE: Static Hue Colors */
    background: linear-gradient(45deg, #400094, #7000ff, #ff0095, #333);
    background-size: 200% 100%;
    background-position: 0% 0%;
    
    box-shadow: 0 0 8px rgba(112, 0, 255, 0.2);
}

#btn-liveweave-ai-open:hover {
    color: #fff;
    
    /* HOVER STATE: Trigger Infinite Animation */
    animation: hoverHueShift 2s linear infinite;
    
    /* Change to a different gradient set on hover */
    background: linear-gradient(45deg, #7000ff, #ff0095, #0195c1, #7000ff);
    background-size: 200% 100%;
    
    box-shadow: -5px 0 15px rgba(255, 0, 149, 0.4);
}

/* Logic for the hover movement */
@keyframes hoverHueShift {
    from { background-position: 0% 0%; }
    to { background-position: 200% 0%; }
}


  /* Button */
  .action-btn {
    background-color: #4DA6FF;
    color: #fff;
    padding: 15px 25px;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    margin-top: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .action-btn:hover {
    background-color: #398edb;
  }

  a.message-box:link, a.message-box:visited {
    color: #4DA6FF;
    text-decoration: none;
    font-weight: bold;
  }


  /* Centered logo near the top of the message box */
  .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 25px; /* Adjust this value as needed */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
  
  .logo-container img {
    width: 40px; /* Adjust size as needed */
    height: auto;
  }
  
  @media screen and (max-width: 768px) {
    .footer-message h2 {
      font-size: 1.5rem;
    }

    .footer-message p {
      font-size: 0.9rem;
    }

    .action-btn {
      font-size: 1rem;
      padding: 10px 20px;
    }
  }