    .radio-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .radio-btn {
        width: 100%;
        cursor: pointer;
    }

        .radio-btn input[type="radio"] {
            display: none;
        }

.btn-content {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    box-sizing: border-box;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    background-color: #fff;
    color: #212529;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

    /* Hover */
    .radio-btn:hover .btn-content {
        border-color: #86b7fe;
        background-color: #f8f9fa;
    }

    /* Selected */
    .radio-btn input[type="radio"]:checked + .btn-content {
        color: #fff;
        background-color: #0d6efd;
        border-color: #0d6efd;
    }

    /* Focus */
    .radio-btn input[type="radio"]:focus + .btn-content {
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }

    /* Icon */
    .icon {
        font-size: 18px;
    }