/* Make radio buttons larger */
input[type="radio"].form-check-input {
    width: 1em;
    height: 1em;
    margin-right: 0.8em;
    appearance: none; /* Remove default styling */
    border: 0.1em solid #fff;
    border-radius: 50%;
    position: relative;
    outline: none;
    cursor: pointer;
}

/* Custom checked radio button styling */
input[type="radio"].form-check-input:checked::before {
    content: '';
    display: block;
    width: 1em;
    height: 1em;
    margin-right: 1em;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Make labels larger, bolder, and add margin */
label.form-check-label {
    font-size: 1em; /* Adjust the size as needed */
    font-weight: bold;
    margin-left: 1em; /* Add margin to separate from radio button */
}