.custom-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Style the label container itself as the button */
.custom-card {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
	width: 350px;
	height: 350px;
	vertical-align: top;
}

/* Style change when active */
.custom-card:has(input[type="radio"]:checked) {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}

body {
	padding: 30px;
}