#adminPanel {
	color: #ccc;
}

#pegDraw {
	color: #111;
	background: #111;
	margin: 0 auto 1em;
	padding: 2em;
	border-radius: 2em;
  touch-action: manipulation;
  -webkit-user-select: none;
  text-align: center;
}

#pegDraw input {
	margin: 0 auto;
}

#pegDraw img {
	max-width: 140px;
	float: left;
	margin-bottom: 1em;
	margin-right: 1em;
}

#pegDraw h1,
#pegDraw h2 {
	padding: 0;
}
#pegDraw h1 {
	color: #48a9be;
	margin-top: 0;
}

#pegDraw h2 {
	color: #fefefe;
	text-transform: uppercase;
	margin-bottom: 0;
	font-size: 110%;
}

#anglerCount {
	font-size: 280%;
	font-weight: bold;
	display: block;
	margin: .25em 1em;
	color: white;
}

hr {
	clear: both;
	color: #111;
	background: #111;
	border: 0;
	border-top: 1px solid rgba(0,0,0,0.7);
	border-bottom: 1px solid rgba(255,255,255,0.1);
	margin: 2em 0;
}

#drawCircle {
   position: relative;
  width: 90%;               /* 90% of the viewport width */
  max-width: 500px;          /* Cap at 500px for larger screens */
  aspect-ratio: 1 / 1;       /* Keep it a perfect circle */
  margin: 20px auto;
  border: 5px solid #333;
  border-radius: 50%;
  overflow: hidden;
  background-color: white;
  display: none;
}

#drawButtonContainer {
  text-align: center;
}

.pegBall {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
    background: radial-gradient(circle, #a8dfff 0%, #60b0d3 50%, #1d3a50 100%);
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  pointer-events: none;
  user-select: none;
  transition: none;
  z-index: 1;  
  color: #111!important;
  text-shadow: 1px 1px 0px rgba(255,255,255,0.5);
}

.pegBall.enlarged {
  transition: all 0.5s ease;
  z-index: 1001;
  transform: scale(2);
}

.popup {
  position: absolute;
  line-height: 1.2em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  padding: 30px;
  font-size: 34px;
  font-weight: bold;
  background: #4A8E39;
  background: linear-gradient(90deg,rgba(74, 142, 57, 1) 0%, rgba(104, 174, 87, 1) 100%);
  border: 4px solid #000;
  color: #111;
  border-radius: 1em;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}

#popuptxt {
	font-size: 180%;
}

.popup small {
	display: block;
    font-size: 20px;
}

.popup.show {
  transform: translate(-50%, -50%) scale(1);
}

#resultsTable {
  margin-top: 40px;
  border-collapse: collapse;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  display: none;
  margin-bottom: 20px;
}

#resultsTable th,
#resultsTable td {
  border: 1px solid #999;
  padding: 10px;
  background: #fff;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  margin: 10px;
  cursor: pointer;
  background-color: #4a5a6a;
  color: white;
  border: none;
  border-radius: 4px;
}

button:hover {
	color: black;
 background: #099bb8;
background: linear-gradient(90deg,rgba(9, 155, 184, 1) 0%, rgba(4, 175, 209, 1) 35%, rgba(0, 212, 255, 1) 100%);
}

input[type="text"] {
  padding: 10px;
  font-size: 16px;
  width: 200px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #f7f7f7;
  color: #333;
}

button, input, select, textarea {
  font-size: 18px;
}

/* Hide the native radio buttons */
.radio-group input[type="radio"] {
  display: none;
}

/* Style the labels like buttons */
.styled-radio {
  display: inline-block;
  margin: 5px;
  padding: 10px 18px;
  border: 2px solid #48a9be;
  border-radius: 8px;
  background-color: #1a1a1a;
  color: #ddd;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  opacity: 0.6;
}

/* Style when selected (checked) */
.radio-group input[type="radio"]:checked + .styled-radio {
  background-color: #48a9be;
  color: white;
  opacity: 1;
  border: 2px solid #48a9be;
  box-shadow: 0 0 0 3px rgba(0, 116, 217, 0.2);
}

#drawPeg,
#startDraw {
	font-size: 150%;
	padding: 1em 10%;
	margin: 1em 0 0;
	width: 80%;
}

@media screen and (min-width: 480px) {
	#pegDraw {
		max-width: 500px;
	}
	.popup {
	  font-size: 48px;
	}
}