/* emojis.css */
/* Fichier .css
	(Version) By sync - (site ver:9.0.0) */

/* Améliore la lisibilité globale */
html{
	scroll-behavior:smooth;
}

html, body {
	touch-action: manipulation; /* Désactive le double-tap pour zoomer, mais autorise le défilement et le pincement */
	-webkit-touch-callout: none;
	user-select: none; /* 👉 navigateurs modernes aujourd’hui (sans préfixe souvent) */
	-webkit-user-select: none; /* 👉 Compat Safari ancien / iOS */
	-ms-user-select: none; /* 👉 vieux Internet Explorer (vieux IE ≤ 10 */
	-moz-user-select: none; /* 👉 moteur WebKit Firefox */
	-o-user-select: none; /* 👉 vieux Opera Presto (avant 2013…) */
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	background: linear-gradient(135deg, #0b1225, #66CC99);
	color: #0a0a0a;
	text-align: center;
	padding: 50px 10px;
	margin: 0;
	min-height: 100vh; min-height: 100svh; min-height: 100dvh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#filter-container {
	width: 88%;
	margin-bottom: 20px;
	padding: 10px;
	background: #BCC2C3;
	border-radius: 10px;
	box-shadow: 0 2px 4px rgba(10, 10, 10, 0.1);
}

#emoji-container {
	width: 90%;
	max-width: 1200px;
	padding: 10px;
	border-radius: 10px;
	background-color: #BCC2C3;
	box-shadow: 0 4px 6px rgba(10, 10, 10, 0.1);
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	min-height: 200px;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.emoji {
	font-size: 2rem;
	cursor: pointer;
	padding: 5px 8px;
	border-radius: 5px;
	transition: background-color 0.1s, transform 0.1s;
	user-select: none;
}

.emoji:hover {
	background-color: #e0e0e0;
	transform: scale(1.1);
}

/* Effet au clic droit (pour simuler l'ajout au zip) */
.emoji:active {
	background-color: #CCCCCC;
	transform: scale(1.05);
}

/* Style de la bulle de confirmation de copie */
#copy-notification {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #4CAF50;
	color: white;
	padding: 15px 25px;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	opacity: 0;
	transition: opacity 0.5s, visibility 0.5s;
	visibility: hidden;
	z-index: 1000;
	font-size: 1.2rem;
	font-weight: bold;
}

.show {
	opacity: 1 !important;
	visibility: visible !important;
}

#emoji-count {
	margin-top: 20px;
	font-size: 1.1rem;
	color: #555;
	background-color: #ffffff;
	padding: 10px 20px;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	border-radius: 10px 10px / 130px;
}

/*** Fin CSS ***/