.share-Modal {
    display: none;
    position: fixed;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 100%;
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.share-Modal h4 {
    text-align: center;
    font-size: 16px;
}

.share-Modal i {
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    padding: 0 10px;
    font-size: 24px;
    margin: 5px;
}

.share-Modal input[type="text"] {
    font-size: 12px;
}

.share-Modal input[type="text"]:focus {
    outline: none;
    border: 1px solid #ddd;
    box-shadow: none;
}

.share-Modal .copyLnk {
    font-size: 12px;
    color: #fff;
    background: var(--accent-color);
}

.share-Modal .filter-content {
    background: var(--contrast-color);
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.share-Modal .filter-content h5 {
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--heading-font);
    margin-bottom: 10px;
}

.share-Modal .close-filter {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 440px) {
    .share-Modal {
        width: 90%;
    }
}
