.buttonBox {
    display: flex;
    flex-direction: column;
}

.customButton {
    border-color: white;
    color: white !important;
    background-color: #01B4FF !important;
    padding: 3px;
    border-radius: 8px !important;
    line-height: 0 !important;
    border: 1px solid #ccc !important;  
    pointer-events: auto;
    margin-bottom: 3px;
    width: 60px;
    margin-left: auto;
}

.customButton:hover {
    background-color: #37c0fb !important;
}

.customButton.toggled {
    background-color: #006996 !important;
}

.customButton.toggled:hover {
    background-color: #0091d0 !important;
}

img.customButtonIcon {
    width: 100%;
}


/******************************************************************************/

.customButtonGroup {
    /*background-color: green;*/
    display: grid;
    grid-auto-flow: column;
}

.customButtonBar {
    /*background-color: red;*/
    visibility: hidden;
    display: grid;
    grid-auto-flow: column;    
}

.customButtonBar.visible {
    visibility: visible;
}

.customButtonGroup .customButton {
    margin-left: 3px;
}
