.social-share-buttons {
    margin-top: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.social-share-buttons a {
    display: inline-block;
    margin-right: 10px;
    text-decoration: none !important; /* Ensure underline is removed */
    color: white;
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    margin-bottom: 10px; /* Add margin bottom for spacing in mobile view */
}

.social-share-buttons.box a {
    border-radius: 5px;
}

.social-share-buttons.round a {
    border-radius: 50%;
}

.social-share-buttons .facebook { background-color: #3b5998; }
.social-share-buttons .twitter { background-color: #1da1f2; }
.social-share-buttons .whatsapp { background-color: #25d366; }
.social-share-buttons .telegram { background-color: #0088cc; }
.social-share-buttons .line { background-color: #00c300; }
.social-share-buttons .copy-link { background-color: #555; }

.social-share-buttons .total-shares {
    margin-left: auto;
    font-size: 16px;
    color: #333;
}

@media (max-width: 600px) {
    .social-share-buttons {
        justify-content: center;
    }

    .social-share-buttons .total-shares {
        width: 100%;
        text-align: center;
        margin-top: 10px;
        margin-left: 0;
    }
}


