.classification-container {
  text-align: center;
}

.radio-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  /* border: 2px solid red; */
  /* border-radius: 10px; */
  padding: 5px;
  margin: 0 auto; /* Center the container horizontally */
  width: fit-content;
}

label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.judul {
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-weight:600;
}

.btn-warning {
  height: 63px;
  width: 100%;
}



input[type="radio"] {
  display: none;
}

.radio-button {
  font-weight:600;
  margin-bottom: 20px;
  padding: 10px 20px;
  border: 2px solid #078586;
  border-radius: 5px;
  color: white;
  background-color: #078586;
  transition: all 0.3s ease;
}

input[type="radio"]:checked + .radio-button {
  background-color: #ff0606;
  color: white;
}
