/* Custom font */
body {
  font-family: "Inter", sans-serif;
}
/* Style for the generated number balls */
.lotto-ball {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
  margin: 0.25rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.main-ball {
  background-color: #e2e8f0;
  color: #1e293b;
  border: 2px solid #94a3b8;
}
.bonus-ball {
  background-color: #fef08a;
  color: #854d0e;
  border: 2px solid #ca8a04;
}
.life-ball {
  background-color: #fda4af;
  color: #881337;
  border: 2px solid #e11d48;
}
.thunder-ball {
  background-color: #c4b5fd;
  color: #4c1d95;
  border: 2px solid #7c3aed;
}
