.smsb-container {
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.smsb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.smsb-item a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 30px;
    color: white !important;
    text-decoration: none !important;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.smsb-item a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.smsb-item i {
    margin-right: 8px;
    font-size: 18px;
}

.smsb-label {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 14px;
    font-weight: 500;
}

/* Social network specific colors */
.smsb-facebook a { background-color: #3b5998; }
.smsb-twitter a { background-color: #1da1f2; }
.smsb-linkedin a { background-color: #0077b5; }
.smsb-pinterest a { background-color: #bd081c; }
.smsb-whatsapp a { background-color: #25d366; }
.smsb-email a { background-color: #666666; }

/* Responsive design */
@media (max-width: 768px) {
    .smsb-list {
        flex-direction: column;
    }
    
    .smsb-item a {
        justify-content: center;
    }
    
    .smsb-label {
        display: none;
    }
    
    .smsb-item i {
        margin-right: 0;
        font-size: 20px;
    }
}