/* Easy Social Share Buttons Styles */

.essb-container {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    flex-wrap: wrap; /* Allows buttons to wrap on smaller screens */
}

.essb-title {
    font-size: 16px;
    font-weight: bold;
    margin-right: 15px;
    color: #333;
}

.essb-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 5px;
    border-radius: 50%; /* Makes the buttons circular */
    text-decoration: none;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease;
}

.essb-button:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.essb-button svg {
    width: 20px;
    height: 20px;
    fill: #ffffff; /* White icon color */
}

/* Social Network Specific Colors */
.essb-facebook { background-color: #1877F2; }
.essb-twitter { background-color: #1DA1F2; }
.essb-linkedin { background-color: #0A66C2; }
.essb-pinterest { background-color: #E60023; }
.essb-whatsapp { background-color: #25D366; }
.essb-reddit { background-color: #FF4500; }
.essb-email { background-color: #888888; }
