* {
  font-family: Helvetica, Arial, sans-serif;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
  font-size: 16px;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #9c9c9c;
  border-radius: 10px;
}

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

body {
  overflow: hidden;
}

table {
  height: 100%;
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
table thead {
  height: 40px;
  width: 100%;
  display: table;
  overflow: auto;
  border-bottom: 2px solid black;
}
table thead tr {
  width: 100%;
  position: relative;
}
table thead tr th {
  padding: 2px;
}
table tbody {
  height: calc(100% - 40px);
  width: 100%;
  display: block;
  overflow-y: auto;
  overflow-x: auto;
}
table tbody tr {
  display: table;
  width: 100%;
  border-bottom: 1px solid #4b4b4b;
}
table tbody tr:nth-child(even) {
  background-color: #e0e0e0;
}

.hidden-element {
  display: none !important;
}

.text-1 {
  font-size: 16px;
}

.text-2 {
  font-size: 14px;
}

/*# sourceMappingURL=common.css.map */
