.share-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
    flex-wrap: wrap;
}

.share-buttons a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px;
    padding: 9px 14px;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-sizing: border-box;
    line-height: 1 !important;
    transition: all 0.2s ease;
}

.share-buttons a i {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 15px;
    line-height: 1 !important;
    vertical-align: middle;
}


/* Facebook */

#facebookShare {
    background: #1877f2;
}


/* WhatsApp */

#whatsappShare {
    background: #25d366;
}


/* Telegram */

#telegramShare {
    background: #229ed9;
}


/* Hover */

.share-buttons a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

