/* CSS for popup container */
.share_card_container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

/* CSS for the popup box */
.share_card {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: fit-content;
    width: 90%;
}

/* URL input styling */
.share_card .url input[type="text"] {
    width : 475px;
    max-width : 500px;
    padding: 10px;
    border: 1px solid var(--color-border-light);
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Share buttons container */
.share_card .share_buttons {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.share_card .share_buttons img {
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: transform 0.2s;
}

.share_card .share_buttons img:hover {
    transform: scale(1.1);
}
