#game-container {
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #bdbdbd;
}

/* Barra superiore stile Minesweeper */
#game-bar {
  width: 341px;
  margin: 0 auto 12px auto;
  background: #bdbdbd;
  border: 4px solid #7b7b7b;
  box-shadow: 0 2px 8px #888;
  padding: 8px 0 4px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.display {
  background: #222;
  color: #f00;
  font-family: 'Courier New', Courier, monospace;
  font-size: 32px;
  width: 70px;
  text-align: center;
  border: 2px inset #888;
  border-radius: 4px;
  padding: 2px 0;
  margin: 0 8px;
  letter-spacing: 2px;
  box-sizing: border-box;
}

.smile-btn {
  width: 40px;
  height: 40px;
  background: #fff;
  border: 2px outset #888;
  border-radius: 8px;
  margin: 0 8px;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px #aaa;
  cursor: pointer;
  position: relative;
}
.smile-btn:after {
  content: '\1F60A'; /* 🙂 emoji, puoi cambiare con altre faccine */
  font-size: 28px;
  display: block;
}
#body-centered {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #bdbdbd;
}
#game-field {
  width: auto;
  height: auto;
  background: #bdbdbd;
  margin-top: 30px;
  border: 4px solid #7b7b7b;
  box-shadow: 0 2px 8px #888;
  padding: 8px;
  display: inline-block;
}

.field-bomb {
  background-image: url(https://cdn.pixabay.com/photo/2021/11/10/07/45/poo-6783251_640.png);
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
}
.game-over {
  display: none;
}
.field-bomb .game-over {
  display: block;
  background-color: #fff;
  text-align: center;
  position: absolute;
  width: 300px;
  top: 40%;
  left: 20px;
  right: 20px;
  font-size: 36px;
  font-weight: bold;
  color: black;
}
.field-bomb .cella {
  background-color: transparent !important;
  color: transparent !important;
}
.cella {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  font-size: 20px;
  font-family: 'Consolas', 'Courier New', monospace;
  color: transparent;
  background: #e0e0e0;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #7b7b7b;
  border-right: 2px solid #7b7b7b;
  width: 32px;
  height: 32px;
  line-height: 32px;
  box-sizing: border-box;
  transition: background 0.1s;
}
.cell-empty {
  background: #bdbdbd !important;
  color: transparent !important;
  border: 1px solid #bdbdbd;
}
.cell-near {
  background: #bdbdbd !important;
  font-weight: bold;
  color: #1976d2 !important;
}
.cell-near[data-near="2"] { color: #388e3c !important; }
.cell-near[data-near="3"] { color: #d32f2f !important; }
.cell-near[data-near="4"] { color: #7b1fa2 !important; }
.cell-near[data-near="5"] { color: #ff8f00 !important; }
.cell-near[data-near="6"] { color: #00838f !important; }
.cell-near[data-near="7"] { color: #000 !important; }
.cell-near[data-near="8"] { color: #616161 !important; }
.cell-bomb {
  background-image: url(https://cdn.pixabay.com/photo/2021/11/10/07/45/poo-6783251_640.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: #fff !important;
}
.cell-flag {
  background: #e0e0e0 !important;
  background-image: url(./redflag.png) !important;
  background-repeat: no-repeat !important;
  background-size: 100% !important;
}
