.scroll-container {
	display: flex;
	align-items: center;
	background-color: #1A252F;
	border: 1px solid #34495E;
	padding: 10px;
	margin-top: 20px;
	width: 80%; /* Légèrement plus large pour une meilleure ergonomie */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	margin-left: auto;
	margin-right: auto;
}

.scroll-content {
	display: flex;
	overflow: hidden;
	white-space: nowrap;
	flex-grow: 1;
	scroll-behavior: smooth; /* Ajoute un défilement fluide */
}

.scroll-content button {
	display: inline-block;
	margin: 5px;
	padding: 10px 15px; /* Plus d'espace pour un confort accru */
	border: 1px solid #2C3E50;
	background-color: #34495E;
	color: #ECF0F1;
	cursor: pointer;
	border-radius: 5px;
	transition: background-color 0.3s ease, transform 0.3s ease; /* Transition douce pour hover */
}

.scroll-content button:hover {
	background-color: #2C3E50;
	transform: scale(1.05); /* Légère mise en avant au survol */
}

.scroll-content button.active {
	font-weight: bold;
	font-size: 1.2em; /* Augmente la taille du bouton actif */
	background-color: #E74C3C;
	color: #fff;
	border-color: #E74C3C;
	transform: scale(1.1); /* Accentue davantage le bouton actif */
}

.scroll-arrow {
	cursor: pointer;
	font-size: 24px;
	color: #ECF0F1;
	user-select: none;
	padding: 10px;
	transition: color 0.3s ease, transform 0.3s ease; /* Transition douce pour hover */
}

.scroll-arrow:hover {
	color: #E74C3C;
	transform: scale(1.2); /* Légère mise en avant au survol */
}
