.share-wrapper {
	position: relative;
	display: inline-flex;
}

.share-popup {
	display: none;
	position: absolute;
	bottom: calc(100% + 10px);
	right: 0;
	background: #fff;
	border: 1px solid #B1BAD2;
	border-radius: 12px;
	padding: 8px;
	min-width: 190px;
	box-shadow: 0 4px 16px rgba(3, 29, 64, 0.12);
	z-index: 100;
}

.share-popup_open {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.share-popup__item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 8px;
	color: #031D40;
	font-size: 14px;
	cursor: pointer;
	text-decoration: none;
	background: none;
	border: none;
	width: 100%;
	text-align: left;
	transition: background 0.2s;
	white-space: nowrap;
}

.share-popup__item:hover {
	background: #F3F5FA;
}

.share-popup__item svg {
	flex-shrink: 0;
}

.share-popup__copy-feedback {
	color: #009933;
	font-size: 12px;
	padding: 4px 12px 6px;
	display: none;
}

.share-popup__copy-feedback_visible {
	display: block;
}
