
  
  /* Make the canvas fill the entire screen */
  body, html {
    width: 100%;
    height: 100%;
    overflow: hidden; /* Prevent scrollbars */
    background: #111; /* Fallback background color */
  }
  
  canvas {
    border: none !important;
  }
  

  #turretMenu button {
    background-color: #4CAF50; /* Green */
    color: white;
    border: none;
    border-radius: 3px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    margin: 5px;
    transition: background-color 0.3s;
  }
  
  #turretMenu button:hover {
    background-color: #388E3C; /* Darker green */
  }
  
  #turretMenu button.sell {
    background-color: #f44336; /* Red */
  }
  
  #turretMenu button.sell:hover {
    background-color: #d32f2f; /* Darker red */
  }
  
  #scoreboardlist {
    position: relative;

 
    color: white;

    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 22px;
      

  }
