/*body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 20px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}*/
/*.content {
	flex-grow: 1;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.6;
}*/
.share-container {
	position: fixed;
	bottom: 20px;
	right: 30px;
	background-color: #f8f8f8;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 15px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
	transform: translateX(calc(100% - 40px));
	transition: transform 0.3s ease-in-out;
}
.share-container:hover,
.share-container.active {
	transform: translateX(0);
}
.share-button-trigger {
	background-color: #007bff;
	color: white;
	border: none;
	padding: 10px 15px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	display: flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}
.share-button.trigger {
	background-color: blue;
	color: white;
//	width:30px;
}
.share-icons {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}
.share-container:hover
.share-icons,
.share-container
.active
.share-icons {
	max-height: 700px;
	overflow: visible;
}
.share-button {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border: 1px solid #eee;
	border-radius: 5px;
	background-color: #fff;
	color: #333;
	text-decoration: none;
	font-size: 14px;
	cursor: pointer;
	transition: background-color 0.2s, transform 0.2s;
	width: 100%;
	box-sizing: border-box;
}
.share-button:hover {
	background-color: #f0f0f0;
	transform: translateY(-2px);
}
.share-button img,
.share-button svg {
	width: 24px;
	height: 24px;
	vertical-align: middle;
}
.share-button.whatsapp {
	background-color: #25D366; color: white;
}
.share-button.facebook {
	background-color: #1877F2; color: white;
}
.share-button.linkedin {
	background-color: #0A66C2; color: white;
}
.share-button.telegram {
	background-color: #26A5E4; color: white;
}
.share-button.messenger {
	background-color: #0084FF; color: white;
}
.share-button.email {
	background-color: #EA4335; color: white;
}
.share-button.sms {
	background-color: #4CAF50; color: white;
}
.share-button.copy-link {
	background-color: #6c757d; color: white;
}
.share-button.qr-code {
	background-color: #34495e; color: white;
}
.share-button.instagram {
	background-color: #E1306C;
	color: white;
}
.share-button.instagram:hover {
	background-color: #C13584;
}
.qr-modal {
	display: none;
	position: fixed;
	z-index: 1001;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.6);
	justify-content: center;
	align-items: center;
}
.qr-modal-content {
	background-color: #fefefe;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.3);
	text-align: center;
	position: relative;
	max-width: 90%;
	max-height: 90%;
	overflow: auto;
}
.qr-modal-content h3 {
	margin-top: 0;
	color: #333;
	margin-bottom: 15px;
}
#qrcode-container {
	padding: 10px;
	background-color: #fff;
	border: 1px solid #ddd;
	display: inline-block;
	min-width: 200px;
	min-height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#qrcode-container canvas {
	display: block;
}
.close-button {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	position: absolute;
	top: 10px;
	right: 15px;
	cursor: pointer;
}
.close-button:hover,
.close-button:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}
.download-button {
	margin-top: 15px;
	padding: 10px 20px;
	background-color: #2ecc71;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
	transition: background-color 0.3s ease;
}
.download-button:hover {
	background-color: #27ae60;
}
.qrcode-wrapper {
	display: inline-block;
	padding: 15px;
	background: #fff;
	border: 2px solid #ccc;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}