.__smart-share-btn { 
    padding: .6rem 1rem; 
    border-radius: .5rem; 
    border: 1px solid #ccc;
    background: #fff; 
    cursor: pointer; 
}
.smart-share-open { 
    overflow: hidden; 
}
.smart-share-list a {
    color: #374787;
}

.smart-share-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.smart-share-popup[hidden] {
    display: none;
}

.smart-share-popup-inner {
    background: #fff;
    max-width: 90vw;
    border-radius: .75rem;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    position: relative;
}

.smart-share-close {
    position: absolute;
    top: 0px;
    right: 3px;
    float: right;
    border: 0;
    background: transparent;
    font-size: 1.4rem;
    cursor: pointer;
}
body[dir="rtl"] .smart-share-close {
  

    right: auto;
    left: 3px;
    
}
.smart-share-list {
    list-style: none;
    margin: .5rem 0 0;
    padding: 0;
    display: flex
;
    grid-template-columns: 4fr;
    gap: .5rem;
}
.smart-share-list a {
    display: block;
    width: 40px;
    text-decoration: none;
}
.smart-share-list a:hover {
    background: #f8fafc;
}

