.boolean-custom-widget{
    display: flex;
    grid-gap: 2px;
}

.boolean-custom-widget button {
    padding: 7px 10px;
    border: none;
    border-radius: 0;
    background-color: lightgrey;
    transition: background-color 0.2s ease-in-out;
    font-weight: bold;
    color: white;
    font-size: 90%;
    min-width: 55px;
}

.boolean-custom-widget .yes:hover{
    background-color: var(--main-selected-clr) !important;
}

.boolean-custom-widget.yes .yes{
    background-color: var(--main-selected-clr) !important;
}

.boolean-custom-widget .no:hover{
    background-color: var(--main-unselected-clr) !important;
}

.boolean-custom-widget.no .no{
    background-color: var(--main-unselected-clr) !important;
}

button[disabled]{
    visibility: visible;
}

*:not(.yes) > button[disabled]{
    opacity: 0.5;
}