.share-on-text {
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--site-color3);
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
}

.share-on-text svg {
    margin-right: 8px;
    width: 18px;
    height: 18px;
}

.share-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99998;
    display: none;
}

.share-popup-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 99999;
    width: 90%;
    max-width: 400px;
    display: none;
}

.share-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.share-popup-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.share-popup-close {
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    color: #999;
}

.share-popup-close:hover {
    color: #333;
}

.share-blog-icons.popup-icons .social-media-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}