.custom-share-buttons {
    margin-top: 20px;
    max-width: 100%;
    overflow: hidden;
}

.custom-share-buttons .share-button {
    padding: 8px 15px;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    box-sizing: border-box;
    height: 40px;
    flex-shrink: 0;
    margin: 5px;
}

.custom-share-buttons .share-button.facebook { background-color: #3b5998; }
.custom-share-buttons .share-button.twitter { background-color: #1da1f2; }
.custom-share-buttons .share-button.whatsapp { background-color: #25d366; }
.custom-share-buttons .share-button.telegram { background-color: #0088cc; }
.custom-share-buttons .share-button.eitaa { background-color: #ff9800; }
.custom-share-buttons .share-button.rubika { background-color: #9c27b0; }

.custom-share-buttons .share-button:hover {
    opacity: 0.8;
    background-color: #333;
    color: white !important;
}

@media (max-width: 768px) {
    .custom-share-buttons {
        justify-content: flex-start;
        gap: 5px;
    }

    .custom-share-buttons .share-button {
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .custom-share-buttons {
        justify-content: flex-start;
        gap: 5px;
    }

    .custom-share-buttons .share-button {
        padding: 8px 10px;
        height: 35px;
        margin: 5px;
    }
}
