body {
  background: #e9f5f2; /* Pastel mint */
  margin: 0;
  
  margin-top: 2%;
  font-family: 'Arial', sans-serif;
  padding: 30px;
}
.modal-content {
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.modal-body ul {
  padding-left: 20px;
  list-style-type: disc;
}

.modal-body ul ul {
  list-style-type: circle;
}

a {
  color: #88c0d0; /* Soft pastel blue */
  text-decoration: none;
}

#container {
  display: inline-block;
  padding: 20px;
  background: #e9f5f2; /* Same as body */
  border-radius: 20px; /* Rounded corners */
  box-shadow: 8px 8px 16px #c3d6d3, -8px -8px 16px #ffffff; /* Neumorphism effect */

  /* Disable long-press context menus, text highlighting, etc. */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

canvas {
  display: inline-block;
  border-radius: 20px; /* Rounded canvas */
  background: #f3f9f8; /* Slightly lighter than container */
  box-shadow: inset 6px 6px 12px #c3d6d3, inset -6px -6px 12px #ffffff; /* Neumorphism inset */

  /* Helps prevent scrolling on touch or stylus drag */
  touch-action: none;
}

.hud {
  height: 50px;
  margin-bottom: 2px;
  line-height: 50px;
  text-align: right;
  font-family: sans-serif;
  font-size: 2em;
  color: #88c0d0; /* Soft pastel blue */
  background: #f3f9f8; /* Subtle background */
  border-radius: 20px;
  padding: 10px;
  box-shadow: 8px 8px 16px #c3d6d3, -8px -8px 16px #ffffff; /* Neumorphism effect */
}

.score {
  display: inline-block;
  padding-right: 10px;
  color: #8cbea3; /* Pastel green */
  transition: color 0.3s; /* Smoother color transition */
  font-weight: bold;
}
