<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.button-group {
    display: inline-flex;
}
.button-group .option {
    /* border: 1px solid black; */
    cursor: pointer;
    background: lightgray;
    color: #929292;
    user-select: none;
}
.button-group .option.selected {
    background: darkgray;
    color: white;
}
.button-group .option:hover {
    background: #bdbdbd;
    /* color: #dcdcdc; */
    color: white;
}
.button-group .option p {
    margin: 4px;
    margin-left: 8px;
    margin-right: 8px;
    font-weight: 100;
    letter-spacing: .9px;
}
.button-group .option:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.button-group .option:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}</pre></body></html>