
body {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  margin: 0;
}

.container {
  text-align: center;
  margin-top: 50px;
  padding: 0 10px;
}

.grid {
  border-collapse: collapse;
  margin: 0 auto 50px; 
  background-color: #fff;
  max-width: 100%; 
  overflow-x: auto; 
}

.grid td {
  width: 80px;
  height: 80px;
  border: 1px solid #ccc;
  text-align: center;
  vertical-align: middle; 
}

#circleCount {
  font-size: 30px; 
}

#nextButton {
  background-color: #ADCBFD;
  height: 50px;
  width: 50px;
  border: none;
  color: #000;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 0 auto;
}

#nextButton i {
  font-size: 1.8rem;
  margin: 0;
}

#nextButton:hover {
  background-color: #84A9E8;
}

#nextButton:focus {
  border: none;
}

.circle {
  width: 60px;
  height: 60px;
  background-color: #7ED957;
  border-radius: 50%;
  margin: 10px;
}


/* Responsive Styles */
@media (max-width: 768px) {
  .container {
    margin-top: 20px;
    padding: 0 10px;
  }

  .grid td {
    width: 70px;
    height: 70px;
  }

  #nextButton {
    width: 40px;
    height: 40px;
  }

  #nextButton i {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .grid td {
    width: 60px;
    height: 60px;
  }

  #nextButton {
    width: 35px;
    height: 35px;
  }

  #nextButton i {
    font-size: 1.2rem;
  }

  .circle {
    width: 40px;
    height: 40px;
  }
}
