/* Share Cart Modal */
.share-cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #E4E7F4;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

/* Close button for modal */
.share-cart-close {
    float: right;
    font-size: 30px;
    cursor: pointer;
    color: #666;
    font-weight: 300;
}

/* Centered container for the modal content */
.share-cart-modal-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Input field for share link */
#share-cart-link {
    width: 80%;
    padding: 10px;
	max-width: 500px;
    margin-bottom: 10px; /* Changed from margin-right to margin-bottom */
    border: 1px solid #fff;
	background-color: #fff;
    border-radius: 5px;
}

/* Copy icon button */
.share-cart-icon {
    padding: 10px;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 16px;
    color: #333;
}

/* Paragraph styling */
#share-cart-modal p {
    margin: 10px;
	font-weight: 500;
}

/* Adjustments to make elements look like a list */
#share-cart-modal .share-cart-list-item {
    margin: 10px 0;
}

.button#share-cart-button {
    padding: 12px 30px;
    border-radius: 10px;
    color: #fff;
	background-color: #0082C3;
}