11cb0ef41Sopenharmony_ci.content {
21cb0ef41Sopenharmony_ci    display: grid;
31cb0ef41Sopenharmony_ci    grid-template-areas:
41cb0ef41Sopenharmony_ci        "tabs"
51cb0ef41Sopenharmony_ci        "window";
61cb0ef41Sopenharmony_ci    grid-template-columns: 1fr;
71cb0ef41Sopenharmony_ci    grid-template-rows: auto 1fr;
81cb0ef41Sopenharmony_ci    min-height: calc(100vh);
91cb0ef41Sopenharmony_ci}
101cb0ef41Sopenharmony_ci
111cb0ef41Sopenharmony_ci.nav-tabs-container {
121cb0ef41Sopenharmony_ci    grid-area: tabs;
131cb0ef41Sopenharmony_ci    padding: 0px;
141cb0ef41Sopenharmony_ci    background-color: #999999;
151cb0ef41Sopenharmony_ci    border-bottom: 4px solid #CCCCCC;
161cb0ef41Sopenharmony_ci}
171cb0ef41Sopenharmony_ci
181cb0ef41Sopenharmony_ci.tab-content {
191cb0ef41Sopenharmony_ci    grid-area: window;
201cb0ef41Sopenharmony_ci    background-color: white;
211cb0ef41Sopenharmony_ci    padding: 0px;
221cb0ef41Sopenharmony_ci    display:none;
231cb0ef41Sopenharmony_ci}
241cb0ef41Sopenharmony_ci
251cb0ef41Sopenharmony_ci.tab-content.tab-default {
261cb0ef41Sopenharmony_ci    display: block;
271cb0ef41Sopenharmony_ci}
281cb0ef41Sopenharmony_ci
291cb0ef41Sopenharmony_ciul.nav-tabs {
301cb0ef41Sopenharmony_ci    padding: 0px;
311cb0ef41Sopenharmony_ci    margin: 0px;
321cb0ef41Sopenharmony_ci    overflow: auto;
331cb0ef41Sopenharmony_ci    display: table-row;
341cb0ef41Sopenharmony_ci    min-height: 2ex;
351cb0ef41Sopenharmony_ci}
361cb0ef41Sopenharmony_ci
371cb0ef41Sopenharmony_ci.nav-tabs li {
381cb0ef41Sopenharmony_ci    display: inline-block;
391cb0ef41Sopenharmony_ci    padding-left: 10px;
401cb0ef41Sopenharmony_ci    padding-right: 10px;
411cb0ef41Sopenharmony_ci    padding-top: 4px;
421cb0ef41Sopenharmony_ci    padding-bottom: 4px;
431cb0ef41Sopenharmony_ci    min-width: 20px;
441cb0ef41Sopenharmony_ci    text-decoration: none;
451cb0ef41Sopenharmony_ci    color: black;
461cb0ef41Sopenharmony_ci    text-align: center;
471cb0ef41Sopenharmony_ci    user-select: none;
481cb0ef41Sopenharmony_ci    cursor: pointer;
491cb0ef41Sopenharmony_ci}
501cb0ef41Sopenharmony_ci
511cb0ef41Sopenharmony_ci.nav-tabs li:hover {
521cb0ef41Sopenharmony_ci    background-color: #EEEEEE;
531cb0ef41Sopenharmony_ci}
541cb0ef41Sopenharmony_ci
551cb0ef41Sopenharmony_ci.nav-tabs li.active {
561cb0ef41Sopenharmony_ci    background-color: #CCCCCC;
571cb0ef41Sopenharmony_ci}