.custom-share-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center; /* Căn giữa các nút */
    align-items: center; /* Căn giữa theo trục dọc */
    flex-wrap: wrap;
    width: 100%; /* Đảm bảo rằng khung chứa rộng 100% */
    text-align: center; /* Căn giữa các phần tử con */
}

.custom-share-buttons .share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 5px; /* Đảm bảo rằng các nút có khoảng cách đều */
    padding: 10px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: opacity 0.3s ease;
    box-sizing: border-box;
    text-align: center;
    width: 100px;
    height: 40px;
}

.custom-share-buttons .share-button span {
    margin-left: 5px;
}

.custom-share-buttons .share-button.facebook { background-color: #3b5998; }
.custom-share-buttons .share-button.twitter { background-color: #1da1f2; }
.custom-share-buttons .share-button.threads { background-color: #000; color: #fff; }

.custom-share-buttons .share-button i {
    font-size: 18px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .custom-share-buttons { justify-content: center; }
    .custom-share-buttons .share-button {
        width: 50px;
        height: 50px;
        padding: 0;
    }
    .custom-share-buttons .share-button span { display: none; }
    .custom-share-buttons .share-button i {
        font-size: 24px;
        width: 24px;
        height: 24px;
    }
}
