/* General styling for the sharing buttons */
.wp-social-sharing-buttons {
    display: flex;
    gap: 10px;
    margin: 10px 0;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    justify-content: center; /* Center buttons on smaller screens */
	font-weight: bold;
}

.wp-social-sharing-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 120px; /* Ensure consistent button size */
    text-align: center;
}

.wp-social-sharing-buttons a:hover {
    background-color: #e0e0e0;
	font-weight: bold;
}

/* Colors for specific platforms */
.wp-social-sharing-buttons a.facebook {
    color: #3b5998;
    border-color: #3b5998;
}

.wp-social-sharing-buttons a.facebook:hover {
    background-color: #3b5998;
    color: #fff;
}

.wp-social-sharing-buttons a.whatsapp {
    color: #25d366;
    border-color: #25d366;
}

.wp-social-sharing-buttons a.whatsapp:hover {
    background-color: #25d366;
    color: #fff;
}

.wp-social-sharing-buttons a.xcom {
    color: #1DA1F2;
    border-color: #1DA1F2;
}

.wp-social-sharing-buttons a.xcom:hover {
    background-color: #1DA1F2;
    color: #fff;
}

.wp-social-sharing-buttons a.email {
    color: #db4437;
    border-color: #db4437;
}

.wp-social-sharing-buttons a.email:hover {
    background-color: #db4437;
    color: #fff;
}

/* Mobile-specific styling */
@media (max-width: 768px) {
    .wp-social-sharing-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
    }

    .wp-social-sharing-buttons a {
        font-size: 16px; /* Slightly larger text for readability */
        padding: 12px 20px;
        width: 100%; /* Buttons take full width */
    }
}
