/* Main Styles */
.em-views,
.em-reading-time {
    font-family: 'Cairo', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    direction: rtl;
}

/* Social Share Styles */
.em-social-share {
    display: inline-block;
    position: relative;
}

.em-share-trigger {
    cursor: pointer;
    font-size: 1.2em;
}

.em-share-popup {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 8px;
    display: none;
    z-index: 1000;
}

.em-social-share:hover .em-share-popup {
    display: flex;
    gap: 12px;
}

.em-share-button {
    display: inline-flex;
    padding: 6px;
    border-radius: 4px;
    transition: transform 0.2s;
}

.em-share-button:hover {
    transform: scale(1.1);
}

.em-share-button svg {
    width: 20px;
    height: 20px;
}

.em-share-button[data-platform="facebook"] svg {
    fill: #1877f2;
}

.em-share-button[data-platform="twitter"] svg {
    fill: #1da1f2;
}

.em-share-button[data-platform="whatsapp"] svg {
    fill: #25d366;
}