/****************************************************************/

/* Create table for terminal shell foratting with columns */
/* https://stackoverflow.com/questions/8479090/remove-spacing-between-table-cells-and-rows */

table.shell {
  background : rgba(204, 204, 204, 0.4);

  /* padding:  0.5em; */

  /* border: thin solid black; */
  border-top: thin solid rgba(0, 0, 0, 0.4);
  border-bottom: thin solid rgba(0, 0, 0, 0.4);

  overflow: auto;

  border-collapse: separate;
  white-space: normal;
  line-height: normal;
  font-family:courier;
  font-weight: normal;
  font-size: medium;
  font-style: normal;
  color: -internal-quirk-inherit;
  text-align: start;
  border-spacing: 0px!important;
  font-variant: normal;   
}

table.shell tr th:nth-child(1),td:nth-child(1) {
  width : 5em;
}
table.shell tr th:nth-child(2),td:nth-child(2),th:nth-child(3),td:nth-child(3) {
  width : -moz-fit-content;
  width : fit-content;
}
table.shell tr th:nth-child(2),th:nth-child(3) {
  padding-right : 0.5rem;
}
table.shell tr td:nth-child(3) {
  padding-left : 2em;
}

table.shell tr th {
  font-family : courier;
  font-weight : bold;
  font-size : 1rem;
}
table.shell tr td {
  border-right : 1px solid #99CC66;
  color : black;
  font-size : 1rem;
  padding : 0.25em;
  padding-left : 1.5em;
  /* margin-left : 1em; */
}
table.shell tr td:last-of-type {
  border : none;
}

