html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

#ui-container {
  width: 100%;
  font-size: 1.2rem;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 10px;
  position: relative;
  z-index: 10;
  color: #222; /* Ensure dark text */
  font-weight: bold;
  letter-spacing: 0.5px;
}

canvas {
  display: block;
  margin: 0 auto;
  /* Optional: add a border or shadow for clarity */
}

.centered-div {
  display: inline-block;
  margin: 0 10px;
  position: static !important; /* Override absolute if needed */
  top: unset !important;
}