.social-followers-widget {
    display: flex;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 32px;
}

.social-block {   
    text-align: center;
    width: 33.3333%;
    margin: 0;
    float: left;
    padding: 10px;
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.social-block a {
    text-decoration: none;
    color: inherit;
}

.social-block i, .social-block svg {
    font-size: 24px;
}

.social-block .followers-count {
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    display: block;
    margin-top:10px;
}

.social-block .social-label {
    font-size: 13px;
}

.social-block.facebook {
    background-color: #506EAB;
}

.social-block.x {
    background-color: #000000; 
}

.social-block.youtube {
    background-color: #E24E42;
}

/* Add a hover effect */
.social-block:hover {
    background-color: #222222;
}

a:hover {
    color: unset !important;
}