table {
    cursor: pointer;
}

.header {
    grid-area: xheader;
    background: rgb(61, 79, 93);
    text-align: center;
    padding: 20px 0;
    align-items: center;
}

.stable {
    grid-area: xstable;
    background: rgb(61, 79, 93);
    color: #fff;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    justify-self: center;
}

.stable th {
    text-align: center;
    position: sticky;
    background: white;
    top: 0;
}
  
.stable td {
    padding-right: 1em; /* Prevent Firefox overlap scrollbar */
    justify-self: center;
}
  
.content {
    background: black;
    grid-area: xcontent;
    text-align: center;
    padding: 20px 0;
}

.footer {
    background: black;
    grid-area: xfooter;
    text-align: center;
    text-justify: center;
    color: white;
    padding: 20px 0;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 70px 40px auto auto;
    height: 100%;
    width: 100%;
    grid-template-areas:
        'xheader'
        'xfooter'
        'xcontent'
        'xstable';
    grid-gap: 2px;
    background-color: rgb(61, 79, 93);
}

@media (orientation: landscape) and (min-width: 800px) {
    .grid-container {
        align-content: end;
        justify-content: auto;
        position: absolute;
        grid-template-columns: 320px auto;
        grid-template-rows: auto 1fr 40px;
        grid-template-areas:
            'xheader   xcontent'
            'xstable   xcontent'
            'xstable   xfooter';
        }
}

.rselect {
    background: rgb(91,109,123);
}

.bselect {
    background: rgb(203,220,235);
}
  
.hello {
    padding: 20px 0;
}

.header-container {
    grid-area: xheader;
    display: grid;
    grid-row-gap: 1rem;
    grid-template-columns: 97px 97px 97px;
    align-items: center;
    text-align: center;
    justify-self: center;
}

.header-item {
    justify-self: center;
}

.header-label {
    color: wheat;
    justify-self: center;
    grid-column: 1 / 4;
}

.responsive {
    max-width: 100%;
    height: auto;
}
  