body {
  font-family: Arial, sans-serif;
  padding: 20px;
  max-width: 800px;
  margin: auto;
  background: #f1f1f1;
  text-align: center;
}

h1 {
  font-size: 21px;
  margin-bottom: 20px;
  color: #ff5722;
}

label {
  display: block;
  margin: 10px 0 5px;
  font-size: 14px;
}

input, select, button {
  padding: 10px;
  margin-bottom: 15px;
  width: 80%;
  max-width: 300px;
  box-sizing: border-box;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #ccc;
  transition: 0.3s;
}

button {
  background-color: #ff5722;
  color: white;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  width: 100%;
}

button:hover {
  background-color: #e64a19;
}

.ticket {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.number-ball {
  background: linear-gradient(135deg, #f0c36d, #b28c38);
  color: white;
  padding: 6px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
  font-weight: normal;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.footer-note {
  text-align: center;
  color: #555;
  margin-top: 40px;
  font-style: italic;
  font-size: 12px;
}

.radio-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  margin-top: 10px;
}

.loading {
  display: none;
  font-size: 20px;
  margin: 20px 0;
}

#lotteryTypeSection {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.copy-notification {
  margin-top: 10px;
  padding: 10px;
  background-color: #4caf50;
  color: white;
  font-size: 16px;
  border-radius: 4px;
  display: none;
  width: 80%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.error {
  color: red;
  font-size: 14px;
  margin: 10px 0;
}

#sms {
  margin-top: 20px;
  font-size: 16px;
}

.sms-text {
  margin: 10px auto;
  max-width: 90%;
  word-break: break-word;
  white-space: pre-wrap;
  line-height: 1.5;
}

.copy-button {
  background-color: #ff5722;
  color: white;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  padding: 10px;
  border-radius: 4px;
  border: none;
  width: 80%;
  max-width: 300px;
  margin-top: 5px;
}

.copy-button:hover {
  background-color: #e64a19;
}

input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ff5722;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  margin-right: 5px;
  vertical-align: middle;
  position: relative;
  transition: all 0.2s ease;
}

input[type="radio"]:checked {
  background-color: #ff5722;
}

input[type="radio"]:checked::after {
  content: '✓';
  position: absolute;
  color: white;
  font-size: 14px;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#zodiacElement {
  padding: 10px;
  margin-bottom: 15px;
  width: 80%;
  max-width: 300px;
  box-sizing: border-box;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #ccc;
  transition: 0.3s;
}

.hidden {
  display: none;
}