.custom-radio-group {
    display: flex;
}
.custom-radio-btn {
    flex: 1;
}
.custom-radio-input {
    display: none;
}
.custom-radio-label {
    display: block;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    border: 1px solid #007bff;
    color: #007bff;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 0;
}
html[dir="ltr"] .custom-radio-btn:first-child .custom-radio-label {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
html[dir="ltr"] .custom-radio-btn:last-child .custom-radio-label {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
html[dir="ltr"] .custom-radio-btn:not(:first-child) .custom-radio-label {
    border-left: none;
    box-shadow: -1px 0 0 0 #007bff;
}
html[dir="rtl"] .custom-radio-btn:first-child .custom-radio-label {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
html[dir="rtl"] .custom-radio-btn:last-child .custom-radio-label {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
html[dir="rtl"] .custom-radio-btn:not(:first-child) .custom-radio-label {
    border-right: none;
    box-shadow: 1px 0 0 0 #007bff;
}
.custom-radio-input:checked + .custom-radio-label {
    background-color: #007bff;
    color: white;
}
.custom-radio-label:hover {
    background-color: #e6f0ff;
}