/* Custom CSS for the Activity Radio Items to behave like a table list */

.activity-radio-group .form-check {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    margin: 0;
    background-color: white;
}

.activity-radio-group .form-check-input {
    order: 2;
    transform: scale(1.5);
    margin-left: 10px;
    margin-top: 0;
    /* Fix alignment */
}

.activity-radio-group .form-check-label {
    order: 1;
    width: 100%;
    font-weight: 500;
    padding-left: 0;
    /* Reset bootstrap default */
    cursor: pointer;
}