body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	display: grid;
	place-items: center;
	min-height: 100vh;
	background: #f0f2f5;
}
.slot-machine {
	background: #fff;
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	text-align: center;
	width: 250px;
}
h2 {
	margin-top: 0;
}
.reels {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin: 1.5rem 0;
	padding: 1rem;
	background: #333;
	border-radius: 8px;
	border: 4px solid #f0e68c;
}
.reel {
	font-size: 3rem;
	width: 80px;
	height: 100px;
	display: grid;
	place-items: center;
	background: #fff;
	border-radius: 5px;
	box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}
#resultat {
	font-size: 1.2rem;
	font-weight: bold;
	height: 2em;
	color: #333;
}
.controls {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

#token-id-input {
	font-family: "Courier New", Courier, monospace;
	padding: 0.5rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1.2rem;
	text-align: center;
}

#spin-button,
#reset-button {
	padding: 0.75rem;
	font-size: 1.1rem;
	font-weight: bold;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

#spin-button {
	background-color: #28a745;
}
#reset-button {
	background-color: #dc3545;
	margin-top: 10px;
}

#spin-button:disabled {
	background-color: #999;
	cursor: not-allowed;
}
