@charset "UTF-8";
/* CSS Document */

  @media (max-width: 768px) {
    .mobile-bottom-share {
      position: fixed !important;
      bottom: 0 !important;
      left: 0 !important;
      width: 100% !important;
      
      /* Reduced padding to make the overall height narrower */
      padding: 5px 8px !important; 
      
      /* 60% Opacity Dark Tint with Blur */
      background-color: rgba(0, 0, 0, 0.3) !important;  
      backdrop-filter: blur(5px) !important;
      -webkit-backdrop-filter: blur(5px) !important;
      
      box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2) !important;
      margin: 0 !important;
      z-index: 999999 !important;
      justify-content: center !important;
    }
    
    /* Slightly scales down button sizes to fit the shorter height */
    .mobile-bottom-share .share-btn-size {
      width: 30px !important;
      height: 30px !important;
    }
      
  /* Forces the heading text to turn white on mobile screens */
  .mobile-bottom-share .share-title {
    color: #ffffff !important;
  }    
    /* Tweaks font sizes to keep icons visible inside the shorter buttons */
    .mobile-bottom-share .share-btn-size.x-icon { font-size: 18px !important; }
    .mobile-bottom-share .share-btn-size.fb-icon { font-size: 20px !important; }
    .mobile-bottom-share .share-btn-size.wa-icon { font-size: 24px !important; }
    .mobile-bottom-share .share-btn-size.tg-icon { font-size: 22px !important; }
    .mobile-bottom-share .share-btn-size.ml-icon { font-size: 22px !important; }
    
    /* Hides the text label on mobile so buttons center beautifully */
    .mobile-bottom-share strong { display: none !important; }
  }

#copy-toast {
    position: fixed;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    background: rgba(0,0,0,0.9);
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
    word-break: break-all;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

#copy-toast.show {
    opacity: 0.8;
}

#copy-toast small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    opacity: 1;
    word-break: break-all;
}