
.all-share-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}
.all-share-container span {
    font-weight: bold;
    margin-right: 10px;
}
.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    transition: transform 0.2s;
}
.share-btn:hover {
    transform: scale(1.1);
}
.share-btn i {
    font-size: 20px;
}
.whatsapp { background: #25D366; }
.telegram { background: #0088cc; }
.pinterest { background: #E60023; }
.facebook { background: #3b5998; }
.linkedin { background: #0077b5; }
.twitter { background: #1DA1F2; }
.koo { background: #ffcc00; color: #000; }
