.passport-button-group .form-checkboxes, 
.passport-button-group .form-radios {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); 
  gap: 15px; /* Adds uniform spacing between buttons */
  border-color: #CCCCCC;
  border-radius: 3px;
  overflow: visible !important;
  padding: 10px;
}

.passport-button-group input {
  display: none !important;
}

.passport-button-group label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80px;
  padding: 10px;
  background-color: #ffffff;
  border: 2px solid #CCCCCC;
  color: #000;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 0 !important;
  height: 100%;
}

.passport-button-group input:checked + label {
  color: #000;
  border: 2px solid #0074BD; /* Match your blue border */
  box-shadow: 0 0 0 1px #0074BD; /* Optional: Makes the border look sharper when selected */
}

.webform-flexbox .webform-flex {
  flex: 1 1 50% !important;
  max-width: 50% !important;
}