
  .game-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Creates two equal columns */
    gap: 20px; /* Adds spacing between grid items */
    margin: 0 auto;
    width: 100%; /* Ensures the container scales to the full width */
    max-width: 1200px; /* Optional: set a maximum width for larger screens */
  }

  .grid-container {
    width: 100%; /* Ensures each container takes up the full space of its grid column */
    box-sizing: border-box; /* Ensures padding/border don't affect width */
  }
  
  .grid-box {
    text-align: left;
  }
  
  .grid {
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    background-color: #444;
    margin: 10px auto;
    width: 100%;
    aspect-ratio: 1;
  }
  
  .grid div {
  }
  
  .grid div.active {
    background-color: orange;
  }
  
  .controls {
    justify-content: center;
    margin: 10px 0;
    padding: 10px 20px;
    background-color: rgb(33, 33, 33);
  }
  
  label {
    margin-right: 5px;
  }
  
  input {
    width: 50px;
    margin-right: 10px;
  }
  
  button {
    padding: 5px 10px;
    margin-right: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #555;
  }
  
  .color-palette {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    justify-content: center;
    margin-top: 0px;
    flex-wrap: wrap; 
    gap: 10px;
  }
  
  .color-button {
    margin: 0 5px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    aspect-ratio: 1;
    width: 35px;
    height: 35px;
    padding: 0px;
  }
  
  .color-button.active {
    border: 2px solid white;
  }
  
  .symbol_0 {
      background-color: #000;
  }
  .symbol_1 {
      background-color: #0074D9; /* blue */
  }
  .symbol_2 {
      background-color: #FF4136; /* red */
  }
  .symbol_3 {
      background-color: #2ECC40; /* green */
  }
  .symbol_4 {
      background-color: #FFDC00; /* yellow */
  }
  .symbol_5 {
      background-color: #AAAAAA; /* grey */
  }
  .symbol_6 {
      background-color: #F012BE; /* fuschia */
  }
  .symbol_7 {
      background-color: #FF851B; /* orange */
  }
  .symbol_8 {
      background-color: #7FDBFF; /* teal */
  }
  .symbol_9 {
      background-color: #870C25; /* brown */
  }

  .controls {

  }


  .submit-navigation {
    position: fixed;
    background-color: white;
    bottom: 0px;
    width: 100px;
    left: 30px;
    top: 140px;
    height: 400px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    
    text-align: left;
    opacity: 1;
    pointer-events: visible;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-delay: 0s;
    transition-behavior: normal;
    transition-property: all;
    transform: rotateX(0deg) rotateY(0deg);
    z-index: 4;
}