.share-bar {
    position: fixed;
    top: 40%;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2000;
    max-width: 1280px;
}

@media screen and (min-width:1280px) {
.share-bar {
right: 1%;
}}
.share-bar a,
.share-bar button {
    width: 45px;
    height: 45px;
    background: #1e73be;
    color: #fff;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: 0.2s ease;
}

.share-bar a:hover,
.share-bar button:hover {
    transform: scale(1.1);
}

/* Colors */
.facebook { background: #1877f2; }
.twitter  { background: #1da1f2; }
.whatsapp { background: #25d366; }
.messenger { background: #0084ff; }
.copy { background: #444; }

/* Hide on very small devices */
@media (max-width: 768px) {
    .share-bar {
        right: 13px;
        top: 50%;
    }
}

@media (max-width: 480px) {
    .share-bar {
        display: none;
    }
}
