.sssb-wrapper {
    text-align: left;
    margin: 25px 0;
}

.sssb-share-text {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.sssb-container {
    display: flex;
    gap: 12px;
    align-items: center;
}

.sssb-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
}

.sssb-button:hover {
    transform: scale(1.1); /* Adds a nice zoom effect on hover */
}

/* Styles for the Font Awesome Icons */
.sssb-button i {
    color: #ffffff; /* Icon color is white */
    font-size: 20px; /* Icon size */
}

/* Center the Facebook icon which can sometimes be off-center */
.sssb-button .fa-facebook-f {
    line-height: 44px; /* Vertically centers the icon */
}


/* Social Network Brand Colors */
.sssb-facebook {
    background-color: #1877F2;
}

.sssb-whatsapp {
    background-color: #25D366;
}

.sssb-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.sssb-tiktok {
    background-color: #010101;
}