.custom-radio {
    line-height: 1.5em;
    padding: 5px;
    display: block;
    cursor: pointer;
    margin-bottom: 10px;
}

.custom-radio input {
    display: none;
}

.custom-radio span {
    position: relative;
    padding-left: 30px;
    display: inline-block;
}

.custom-radio span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background: #fff;
    box-sizing: border-box;
}

.custom-radio input:checked + span:before {
    background: #4cae4c;
    border-color: #0fbf12;
}

.custom-radio input:checked + span:after {
    content: "";
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px; /* Ajusta según sea necesario */
    height: 14px; /* Ajusta según sea necesario */
    border: 2px solid #fff; /* Borde interior */
    border-radius: 50%;
    background: #4cae4c;
    box-sizing: border-box;
}