/* table styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.commands-list {
  display: grid;
  height: 100%;
  width: 100%;
  place-items: center;
  background: white;
  color: black;
}

.commands-list span {
  font-size: 40px;
  margin-left: 20px;
}

.commands-list .content-table {
  border-collapse: collapse;
  margin: 25px 25px;
  max-width: 550px;
  font-size: 0.9em;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.commands-list .content-table thead tr {
  background-color: yellow;
  color: black;
  text-align: left;
  font-weight: bold;
}

.commands-list .content-table th,
.commands-list .content-table td {
  padding: 12px 15px;
}

.commands-list .content-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.commands-list .content-table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

.commands-list .content-table tbody tr:last-of-type {
  border-bottom: 2px solid yellow;
}

.commands-list .content-table tbody tr.active-row {
  font-weight: bold;
  color: blue;
}