/* Lightweight Social Sharing Styles */
.lwss-share-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px; /* Spacing between buttons */
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.lwss-share-title {
    font-weight: bold;
    font-size: 16px;
    margin: 0 10px 0 0;
    color: #333;
}

.lwss-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Makes buttons round */
    transition: opacity 0.2s ease-in-out;
}

.lwss-share-button:hover {
    opacity: 0.85;
}

.lwss-share-button svg {
    width: 20px;
    height: 20px;
    fill: #ffffff; /* Icon color is white */
}

/* Social Network Brand Colors */
.lwss-facebook { background-color: #1877F2; }
.lwss-x { background-color: #000000; } /* Updated from Twitter to X */
.lwss-linkedin { background-color: #0A66C2; }
.lwss-whatsapp { background-color: #25D366; }
.lwss-telegram { background-color: #24A1DE; }
.lwss-signal   { background-color: #3a76f0; }