


@media screen and (max-width: 1000px) {
  .summaries,.bins {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 0.4rem;
    width: 100%;
    justify-content: center;
    margin: .4rem;
}
}

body {
    font-family: sans-serif;
    /* margin: 10px 10px 10px 10px; */
    background: #1D1D1D;
    color: #6aff00;
    padding: 5px;
}

.summaries,.bins {
    display: grid;
    grid-template-columns: repeat(auto-fill,30rem);
    grid-gap: 0.4rem;
    width: 100%;
    justify-content: center;
}

.sensorSummary,.bin {
    margin: 2px 2px;
    padding: 10px 10px;
    border: 1px solid #15dc08;
}

table {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
}

tr {border: dotted #5e5e5e;border-width: 0px 0px 1px 0px;border-collapse: collapse;text-align: center;}

caption {
    font-size: 2.2em;
    font-weight: bold;
    padding-bottom: 1em;
}
caption > p {
    margin: 0;
}

th {
    /* border: dotted #5e5e5e; */
    /* border-width: 0px 0px 1px 0px; */
    /* border-collapse: collapse; */
    font-size: 1.5em;
    font-weight: bold;
    text-align: left;
}

.sensorSummary:nth-child(odd) {
    background-color: #0c0c0c;
}

td {
    /* margin: 2px 2px; */
    /* border: dotted #5e5e5e; */
    /* border-width: 0px 0px 1px; */
    font-size: 1.4rem;
    text-align: right;
    /* width: 50%; */
}

.summaryTableContainer {
    padding-bottom: 1rem;
}