table {
    border-collapse: collapse;
    margin-top: 1em;
    margin-bottom: 1em;
}

table, th {
    border: 0px;
}

td {
    border: 1px solid black;
}

th, tr, td {
    padding-left: 1em;
    padding-right: 1em;
    text-align: center;
}


table td#Z-box {
    background-color: turquoise;
}

.flexRow {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.col {
    text-align: center;
}

/* .col p {
    margin: 0;
    transform: translateY(50%);
} */

.col-xs {
    text-align: center;
}

/* .col-xs p {
    margin: 0;
    transform: translateY(50%);
} */

#scrollable-table {
    overflow: auto;
    white-space: nowrap;
}

/* width */
::-webkit-scrollbar {
    height: 3px;
    width: 10px;
  }
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1; 
}

/* Handle */
::-webkit-scrollbar-thumb {
background: #dedede; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #ddd; 
}

#vertical-cell {
    vertical-align: top;
}

#vertical-text {
    vertical-align: top;
    writing-mode: vertical-rl;
    text-orientation: upright;
    vertical-align: top;
}

#step-wrapper {
    padding-top: 1em;
    border-width: 0.1em;
    border-bottom-style: solid;
    border-bottom-color: #f4f4f4;
}

.step-title {
    font-size: 20px;
    font-weight: bold;
}

#buttonWrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 10px 0;
}

#buttonWrap input {
    margin-right: 10px;
}

#buttonWrap p {
    margin: 0;
}

#mynetwork {
    width: auto;
    height: 55vh;
    border: 1px solid black;
  }


@media only screen and (max-width: 600px) {
    #mynetwork {
        height: 50vh;
    }
}

@media only screen and (min-width: 601px) {
.flexRow {
    flex-direction: row;
}
}