* {
    box-sizing: border-box;
}

@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 100 700;
    src: url(Material_Symbols_Outlined700.woff2) format('woff2');
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 38px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    align-self: center;
    color: orangered;
}

html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

body {
    display: flex;
    flex-direction: row;
    font-family: 'Open Sans', arial, helvetica, sans-serif;
}

#groups {
    width: 250px;
    border-right: solid 3px #263238;
    background-color: #263238;
}

#groups button {
    border: none;
    border-bottom: solid 1px #263238;
    padding: 10px 20px;
    width: 100%;
    color: #263238;
    text-align: left;
    cursor: pointer;
}

#groups button:hover {
    background-color: #263238;
    color: white;
}

#icons {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#title {
    color: #263238;
    border-bottom: solid 3px #263238;
    font-size: 14px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}

#TitleLabel {
    flex: 1;
    padding: 0 20px;
    align-self: center;
}

#TitleButtons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin: 5px;
}
/*
#title span {
    color: orangered;
}
*/
#container {
    flex: 1;
    overflow: auto;
}

.IconGroup {
    padding: 20px;
    display: none;
    flex-wrap: wrap;
    gap: 10px;
}

.IconGroup.visible {
    display: flex;
}
/*
.IconGroup button {
    width: 100px;
    height: 100px;
    padding: 10px;
    background-color: #EFEFEF;
    cursor: pointer;
    border: solid 1px #263238;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
*/

.TitleButton {
    width: 150px;
    padding: 0 5px;
    background-color: #EFEFEF;
    cursor: pointer;
    border: solid 1px #263238;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    column-gap: 10px;
}

.TitleButton span, .IconButton span {
    pointer-events: none;
}

#Outline {
    font-variation-settings: 'FILL' 0;
}

#Fill {
    font-variation-settings: 'FILL' 1;
}

.IconButton {
    width: 150px;
    padding: 10px;
    background-color: #EFEFEF;
    cursor: pointer;
    border: solid 1px #263238;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    /* align-items: center; */
    align-items: stretch;
    justify-content: center;
    column-gap: 10px;
    font-variation-settings: 'FILL' 1;
}

.IconCount {
    float: right;
    color: orangered;
    font-size: 11px;
}

.TitleButton:hover,
.IconGroup button:hover,
[data-active="true"] {
    background-color: #263238;
    color: white;
}

#TitleButtons button:hover .material-symbols-outlined,
.IconGroup button:hover .material-symbols-outlined, 
[data-active="true"] .material-symbols-outlined {
    color: orange;
}

.IconLabel {
    text-align: left;
    font-size: 11px;
    flex: 1;
    padding: 0 10px;
    line-height: 1.3;
    align-self: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

#TotalOfIcons {
    font-size: 14px;
    color: white;
    padding: 10px 20px;
    border-top: solid 1px orangered;
}

#TotalOfIcons span {
    color: orangered;
    font-weight: bold;
    float: right;
}