/* (PART A) ENTIRE TABLE */

#pnl-table {
  width: 400px;
  border-collapse: collapse;
}

/* #pnl-table tr:nth-child(odd) {
  background: #f2f2f2;
}

#pnl-table td, #pnl-table th {
  text-align: left;
  padding: 10px;
  border: 1px solid #ccc;
}

#pnl-table th {
  color: #fff;
  background: #41607f;
}

/* (PART B) ON DRAG HOVER */

#pnl-table tr.hover {
  background: #eff70d;
}

/* (PART C) ENTIRE PAGE */

/* * {
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
} */

