/* BASE */
:root {
    --app-color: #f0f2f4;
    --app-background: #303234;
    --app-highlight: #606264;
    --app-tr-height:50px;
    --app-tr-gap:2px;
    --app-td-gap:1px;
}

* {
    font-family: sans-serif;
    font-size: 13px;
    font-weight:400;
    margin:0;
    padding:0;
    border:0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color:var(--app-background);
    color:var(--app-color);
}

.center {
    text-align:center;
}
.left {
    text-align:left;
}
.right {
    text-align:right;
}
.hidden {
    display:none;
}




/* SCROLLBAR */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: var(--app-background);
}
::-webkit-scrollbar-corner {
    background:var(--app-background);
}
::-webkit-scrollbar-thumb {
    background: var(--app-highlight);
    border: 2px solid var(--app-background);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--app-highlight);
}








/* APP */

/* app-container */
app-container {
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    overflow-x: hidden;
    overflow-y: hidden;    
        
}




/* APP-TABLE */

/* app-table */
app-table {
    width:auto;
    height:auto;
    display:grid;
    background:var(--app-background);
}

/* app-tr app-th */
app-tr {
    height: var(--app-tr-height);
    line-height: var(--app-tr-height);
    overflow: hidden;
    display: grid;
    grid-column-gap: var(--app-td-gap);
    align-items: center;
    justify-content:center;
    grid-template-columns: repeat(auto-fit, minmax(0px, 1fr)); 
    margin-bottom: var(--app-tr-gap); 
}



/* app-tds */
app-tds {
    overflow:hidden;
    display: grid;
    grid-column-gap: var(--app-td-gap);
    grid-template-columns: repeat(auto-fit, minmax(0px, 1fr));
}


/* app-td */
app-td {
    height: 100%;
               
    display: grid;
    
    text-align:left;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;   

    border-right:solid 10px transparent;
    border-left:solid 10px transparent;

    cursor:pointer;
}
app-tr app-td { 
    opacity:0.8;
} 
app-tr > app-td:hover {
    opacity:0.95;
    color:#303234;
    cursor:pointer;
}




/* APP-ITEMS */

app-p {
    display:grid;
    align-self: center;
    justify-self: stretch;
    line-height:15px;
    word-wrap:nowrap;
}
app-image {
    display:grid;
    place-self: center;
}
app-icon {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    vertical-align: middle;
}
app-icon {
    display:grid;
    place-self: center;
}







