* {
  margin: 0;
  padding: 0;
  font-family: 'Lucida Grande', sans-serif;
  font-size: 15px;
  -webkit-tap-highlight-color: transparent;
  user-select: none; /* Prevent selecting ui text when dragging */
}

body {
  background: url(/static/background2.png) no-repeat center center fixed;
  background-size: cover;
}



.wrapper {
  width: 90%; /* Use a percentage width for responsiveness */
  max-width: 1366px; /* Prevent it from being too wide on large screens */
  height: 90vh; /* Maintain a centered position */
  display: flex;
  align-items: center;
  justify-content: center;
}

.pointer {
  position: absolute;
  top: 50%;
  left: 95%; /* Move to the right */
  transform: translate(-50%, -50%) rotate(270deg); /* Adjust rotation */
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 60px solid red; /* Pointer color */
  z-index: 1; /* Keep above the wheel */
  pointer-events: none;
}


.wheel-wrapper {
  height: 100%;
  width: 100%;
  rotate: 90deg;
}

.gui-wrapper {
  padding: 10px;
  background-color: #f3f3f3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

select {
  padding: 2px;
  cursor: pointer;
}

label {
  margin-right: 5px;
}

button {
  padding: 10px 20px;
  cursor: pointer;
  margin-right: 10px;
}

input[type="radio"],
label[for] {
  cursor: pointer;
  padding-left: 5px;
}

input[type="radio"] {
  margin-left: 5px;
}

.wheel-mask {
    position: absolute;
    transform: scale(1.25);
    transform-origin: center;
    pointer-events: none;
    inset: 0;
}
