@charset "UTF-8";
/* sokoban.css Document */
body {
	font-family: Arial, sans-serif;
	text-align: center;
	background-color: #f0f0f0;
	margin: 0;
	padding: 20px;
}
h1 {
	color: #333;
	margin-bottom: 10px;
}
#game-container {
	display: inline-block;
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
#stage {
	display: grid;
	grid-template-columns: repeat(8, 40px);
	grid-template-rows: repeat(8, 40px);
	gap: 1px;
	background-color: #ccc;
	border: 2px solid #333;
}
.cell {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: bold;
}
/* マップチップの装飾 */
.wall { background-color: #666; } /* 壁 */
.space { background-color: #fff; } /* 床 */
.goal { background-color: #ffeb3b; } /* ゴール点 */
.box { background-color: #ff9800; color: white; } /* 箱 */
.box-on-goal { background-color: #4caf50; color: white; } /* 設置済みの箱 */
.player { background-color: #2196f3; } /* プレイヤー */

#info {
	margin-top: 15px;
	font-size: 18px;
	font-weight: bold;
	height: 27px;
}
button {
	margin-top: 15px;
	padding: 8px 16px;
	font-size: 16px;
	cursor: pointer;
	border-radius: 4px;
	border: 1px solid #ccc;
	background-color: #fff;
}
button:hover {
	background-color: #ddd;
}
