﻿/* Wrapper class applied to RadioButtonList */
.radio-group-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* spacing between options */
    align-items: center;
    margin-top: 5px;
    margin-bottom: 10px;
}

    /* Style each radio item (RadioButtonList renders as <span> elements) */
    .radio-group-list input[type="radio"] {
        margin-right: 6px; /* spacing between radio and label */
    }

    .radio-group-list label {
        margin-right: 20px; /* spacing after label */
        font-size: 15px;
        cursor: pointer;
    }

    /* Optional: slightly bigger radio button */
    .radio-group-list input[type="radio"] {
        width: 18px;
        height: 18px;
    }

    /* Optional: on hover */
    .radio-group-list label:hover {
        color: #0078d4;
    }
