body {
  background-color: black;
  font-family: Monospace;  color: lime;
   display: flex;
   margin: 0;
}

h1 {
   font-size: 2.0rem;
}

h2 {
   font-size: 1.5rem;
}

h3 {
   font-size: 1.25rem;
}

button {
   background-color: lime;
   color: black;
   border: 0;
   margin: 5px;
   padding: 5px;
}

canvas {
    pointer-events: none;
}

.content {
  flex: 1;
  padding: 20px;
  width: 100%;
  height: 100%;
}

/* Sidebar */
.sidebar {
  width: 130px;
  background-color: black;
  color: lime;
  height: 100vh; /* full screen hight  */
  padding: 20px;
  box-sizing: border-box;
}

.sidebar h2 {
  text-align: center;
  margin-bottom: 30px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin: 15px 0;
}

.sidebar ul li button {
   background-color: black;
   color: lime;
   border: 0;
   margin: 0;
   padding: 0;
}

.sidebar ul li button:hover {
  background-color: lime;
  color: black;
}


/* Table */

.table {
   color: lime;
}

.table thead th {
   border-top-color: lime;
   border-bottom-color: lime;
   border-top-style: dashed;
   border-bottom-style: dashed;
}

.table tbody td {
   border-top-color: lime;
   border-top-style: dashed;
}

a.navlink {
    padding: 0.5rem;
    line-height: 2.0rem;
}

a {
    color: lime;
    text-decoration: underline;
}

a:hover {
    color: black;
    background: lime;
    text-decoration: underline;
}
