*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  background-color: #555;
}

canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1200px;
  width: 100vw;
}

.pause-container {
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.5rem;
  background-color: transparent;
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #4287f5;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

input[type="checkbox"]:checked {
  background-color: #4287f5;
  border-color: #4287f5;
}

label {
  color: #ffffff;
  background-color: transparent;
}
.select-container {
  top: 10px;
  left: 120px;
  background-color: transparent;
}

select {
  background-color: #4287f5;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  min-width: 120px;
  padding-right: 30px;
}

select:hover {
  filter: brightness(1.15);
}

select:focus {
  outline: none;
}

select option {
  background-color: #2c2c2c;
  color: white;
  padding: 10px;
}

.container-controls {
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background-color: #2c2c2c;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.container-controls-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
}

.container-controls-top span {
  color: #ffffff;
  background-color: transparent;
}

ul {
  list-style: none;
  padding: 0;
  background-color: transparent;
}

ul li {
  padding: 4px 0px;
  margin: 2px 0;
  background-color: transparent;
  color: white;
  font-size: 14px;
  font-family: Arial, sans-serif;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

ul li strong {
  font-weight: 600;
  color: #7cbbff;
  background-color: transparent;
}

ul li:hover {
  opacity: 1;
}

ul li:first-child {
  list-style: square;
  margin-left: 15px;
}

ul li:last-child {
  list-style: disc;
  margin-left: 15px;
}
