body {
    background-color: white;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding-top: 30px;
  }

  h1 {
    font-size: 32px;
    margin-bottom: 10px;
  }

  h3 {
    margin-bottom: 20px;
  }

  .container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
  }

  .game-area {
    background-color: #fde2e2;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 10px #ffc0cb;
    display: flex;
  }

  .board-area {
    display: flex;
    flex-direction: column;
  }

  #board {
    display: grid;
    grid-template-columns: repeat(8, 60px);
    grid-gap: 10px;
  }

  .side-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 30px;
  }

  .controls {
    background-color: #fff;
    border : 2px dashed #ffb6b6;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    width: 200px;
    text-align: center;
  }

  #start {
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    background-color: #ffb6b6;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
  }

  #start:hover {
    background-color: #ff6b81;
    box-shadow: 0 0 10px #ff6b6b;
  }

  #result {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
  }

  .cell {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .cell:hover {
    transform: scale(1.05);
    box-shadow: 0 0 8px #ff6b81;
  }

  .active {
    background-color: #ff6b81 !important;
  }
  .pressed {
    background-color: #fcc1fb !important;
    box-shadow: inset 0 0 6px #c654a7;
    transform: scale(0.95);
    }