/* 100 % AI */
/* Extra visuell disabled-stil för rollBtn */
.disabled-btn {
  background-color: #ccc !important;
  color: #888 !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
  border: 2px solid #aaa !important;
  box-shadow: none !important;
  text-shadow: none !important;
}
/* Visually disabled roll button */
button[disabled], #rollBtn:disabled {
  background-color: #ccc !important;
  color: #888 !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
  border: 2px solid #aaa !important;
  box-shadow: none !important;
  text-shadow: none !important;
}
/* style.css */
.board-row {
  display: flex;
}
.board-cell {
  width: 35px;
  height: 35px;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: #f9f9f9;
}

