/* general css style for simple web display */
html {
    background-image:
        linear-gradient(to bottom, rgba(138, 212, 255, 0.907), rgba(183, 183, 253, 0.769)),
        url('cloudy_progressive.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    scroll-behavior: smooth;
}    

body {
    background-color:white;
    margin:2% 8%;
    padding:0 3% 3% 3%;
    border:1px solid #96D4D4;
    border-radius: 1%;
}

/* img {
    max-width:100%; 
    height:auto;
} */

span.vcenter {
    display: inline-block;
    /* height: inherit; */
    box-sizing: border-box;
    padding: 250px 0;
    vertical-align: top;
}

#table-wrapper {
    width: 100%;
    overflow: scroll;
}

table, th, td {
    border: 1px solid black;
    border-collapse: collapse; 
}

table {
    margin: 10px;
}

th {
    background-color: #96D4D4;
}

#table-wrapper th:nth-child(1), 
#table-wrapper td:nth-child(1){
    min-width: 40px;
    max-width: 60px;
    overflow-wrap: break-word;
}
#table-wrapper th:nth-child(2),
#table-wrapper td:nth-child(2){
    min-width: 100px;
    min-width: 120px;
}

td {
    padding: 5px;
}

td img {
    border: 3px solid rgb(0, 0, 0);
}

.centered_inline_block {
    margin: auto;
    text-align: center;
    display:inline-block; 
}

.section {
    background-color: rgba(230, 239, 242, 0.984);
    padding: 0.2em 1em;
    /* box-sizing: ; */
}

.centered_figure {
    text-align: center;
    margin: 0;
    display: inline-block;
    /* width: 300px; */
}