/**
 * ThemeVally Toolkit Post Share Widget Additional Styles
 */
.tv-post-share-container {
	position: relative;
	width: 100%;
}

.tv-post-share-header {
	margin-bottom: 15px;
}

.tv-share-title {
	margin: 0;
	font-weight: 600;
}

/* ==========================================
	PREMIUM ON-SCREEN SHARE MODAL STYLES
	========================================== */
.tv-share-modal-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	cursor: pointer;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: none;
	outline: none;
}

.tv-share-modal-trigger i,
.tv-share-modal-trigger svg {
	font-size: 1.1em;
	width: 1.1em;
	height: 1.1em;
	fill: currentColor;
}

.tv-share-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tv-share-modal-overlay.tv-modal-show {
	opacity: 1;
	visibility: visible;
}

.tv-share-modal-box {
	position: relative;
	width: 100%;
	margin: 20px;
	box-sizing: border-box;
	transform: scale(0.95) translateY(20px);
	opacity: 0;
	transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.tv-share-modal-overlay.tv-modal-show .tv-share-modal-box {
	transform: scale(1) translateY(0);
	opacity: 1;
}

.tv-share-modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: transparent;
	cursor: pointer;
	font-size: 18px;
	transition: all 0.25s ease;
	z-index: 10;
}

.tv-share-modal-header {
	margin-bottom: 25px;
	padding-right: 30px;
}

.tv-share-modal-title {
	margin: 0;
	font-weight: 700;
	font-size: 22px;
	line-height: 1.3;
}

.tv-share-modal-body {
	position: relative;
	width: 100%;
}

/* ==========================================
	PREMIUM COPY SUCCESS TOAST NOTIFICATION
	========================================== */
.tv-copy-success-toast {
	position: fixed;
	bottom: 30px;
	right: 30px;
	padding: 12px 24px;
	background-color: #10b981;
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	border-radius: 8px;
	box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
	display: flex;
	align-items: center;
	gap: 10px;
	z-index: 9999999;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tv-copy-success-toast.tv-toast-show {
	opacity: 1;
	transform: translateY(0);
}

.tv-copy-success-toast svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}
