/* Share Button Fix - Override any conflicting styles */

/* Hide any injected social media bars */
body > div:last-child[style*="position: fixed"] {
    display: none !important;
}

/* Ensure our share button is visible and styled correctly */
.share-fab {
    position: fixed !important;
    bottom: 2rem !important;
    right: 2rem !important;
    z-index: 999999 !important;
    display: block !important;
}

.share-trigger {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #059669, #F59E0B) !important;
    border: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.4) !important;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) !important;
    position: relative !important;
    z-index: 2 !important;
    overflow: hidden !important;
    color: white !important;
}

.share-trigger i,
.share-trigger svg {
    color: white !important;
    width: 24px !important;
    height: 24px !important;
}

.share-options {
    position: absolute !important;
    bottom: 80px !important;
    right: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    pointer-events: none !important;
    opacity: 0 !important;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.share-fab.active .share-options {
    pointer-events: auto !important;
    opacity: 1 !important;
}

.share-option {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) !important;
    transform: translateY(20px) scale(0) !important;
    opacity: 0 !important;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2) !important;
    position: relative !important;
    overflow: hidden !important;
}

.share-fab.active .share-option {
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
}

/* Hide text labels that might be showing */
.share-option span {
    display: none !important;
}

/* Platform specific colors */
.share-x {
    background: #000000 !important;
}

.share-reddit {
    background: #FF4500 !important;
}

.share-facebook {
    background: #1877F2 !important;
}

.share-linkedin {
    background: #0A66C2 !important;
}