/* Share Dialog Styles */
.share-dialog-overlay {
	align-items: center;
	animation: fadeIn 0.3s ease-out;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	height: 100%;
	justify-content: center;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10000;
}

.share-dialog {
	animation: slideIn 0.3s ease-out;
	background: white;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	max-height: 80vh;
	max-width: 400px;
	overflow-y: auto;
	width: 90%;
}

.share-dialog-header {
	align-items: center;
	border-bottom: 1px solid #E5E5E5;
	display: flex;
	justify-content: space-between;
	padding: 20px 24px 16px;
}

.share-dialog-header h3 {
	color: #1A1A1A;
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: 600;
	margin: 0;
}

.share-dialog-close {
	align-items: center;
	background: none;
	border: none;
	border-radius: 50%;
	color: #666666;
	cursor: pointer;
	display: flex;
	font-size: 24px;
	height: 32px;
	justify-content: center;
	padding: 0;
	transition: background-color 0.2s ease;
	width: 32px;
}

.share-dialog-close:hover {
	background-color: #F5F5F5;
	color: #333333;
}

.share-dialog-content {
	padding: 24px;
}

.share-options {
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr;
}

.share-option {
	align-items: center;
	border: 1px solid #E5E5E5;
	border-radius: 8px;
	color: #1A1A1A;
	display: flex;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 500;
	gap: 12px;
	padding: 14px 16px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.share-option:hover {
	border-color: #CCCCCC;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transform: translateY(-1px);
}

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

.share-option.facebook:hover {
	background-color: #F7F9FC;
	border-color: #1877F2;
}

.share-option.twitter:hover {
	background-color: #F8F8F8;
	border-color: #000000;
}

.share-option.linkedin:hover {
	background-color: #F0F8FF;
	border-color: #0077B5;
}

.share-option.whatsapp:hover {
	background-color: #F0FFF0;
	border-color: #25D366;
}

.share-option.email:hover {
	background-color: #FFF5F5;
	border-color: #EA4335;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: scale(0.9) translateY(-20px);
	}

	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

/* Mobile responsiveness */
@media (max-width: 480px) {
	.share-dialog {
		margin: 20px;
		width: 95%;
	}

	.share-dialog-header {
		padding: 16px 20px 12px;
	}

	.share-dialog-content {
		padding: 20px;
	}

	.share-option {
		font-size: 15px;
		padding: 12px 14px;
	}
}
