/* Container covers entire screen
.share-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.share-popup {
    background: white;
    padding: 24px;
    border-radius: 16px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.share-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 20px;
}

.share-header .close-share {
    font-size: 24px;
    cursor: pointer;
}

.share-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.share-icons li {
    width: 80px;
    text-align: center;
    font-size: 13px;
}

.share-icons li img {
    width: 28px;
    height: 28px;
    margin-bottom: 6px;
}

.share-icons a,
.share-icons button {
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hidden {
    display: none;
}
.copied-text {
    color: gray;
    font-weight: 500;
}
.share-preview {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.4;
}

.share-preview p {
    margin: 4px 0;
} */