.settings-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}
.lottery-btn-group {
	display: flex;
	gap: 8px;
	align-items: center;
}
.lottery-container { max-width: 420px; margin: 40px auto; background: #fff; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); padding: 32px 24px 24px 24px; }
.lottery-settings {
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 18px;
}
.inline-make-btn {
	margin-left: 4px;
}
.lottery-settings label { font-size: 1rem; color: #333; }
.lottery-settings input[type="number"] { width: 60px; margin: 0 4px; }
.lottery-settings button,
.lottery-btn-group button {
	padding: 7px 28px;
	font-size: 0.95rem;
	border-radius: 6px;
	border: none;
	background: #0078d7;
	color: #fff;
	cursor: pointer;
	transition: background 0.2s;
	min-width: 150px;
	height: 36px;
	box-sizing: border-box;
}
.inline-make-btn {
	min-width: 240px;
	width: auto;
	padding-left: 36px;
	padding-right: 36px;
	white-space: nowrap;
}
.lottery-settings button:disabled { background: #aaa; cursor: not-allowed; }
.lottery-status { margin-bottom: 12px; color: #0078d7; font-weight: 500; font-size: 1.05rem; }
.lottery-list {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
}
.lottery-card {
	width: 90px;
	height: 120px;
	background: #f3f6fa;
	border-radius: 14px;
	border: 2.5px solid #0078d7;
	color: #222;
	font-size: 1.35rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0,0,0,0.07);
	transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
	user-select: none;
	outline: none;
}
.lottery-card:focus {
	box-shadow: 0 0 0 3px #ffe082;
}
.lottery-card.win {
	background: #ffe082;
	color: #0078d7;
	font-weight: bold;
	border-color: #ffe082;
}
.lottery-card.fail {
	background: #e0e0e0;
	color: #d32f2f;
	font-weight: bold;
	border-color: #d32f2f;
}
