body {
  min-width: 500px;
  font-family: Arial, Helvetica, sans-serif;
}

.tabs {
  display: flex;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  align-items: center;
}

.tabs a {
  padding: 10px 15px;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  color: #333;
}

.tabs a.active {
  border-bottom: 2px solid blue;
  color: blue;
}

.tabs button {
  height: 30px;
  margin-left: 10px;
}

table,
table th,
table td {
  border: 1px solid #333;
  border-collapse: collapse;
  white-space: nowrap;
  border-left-color: #ccc;
  border-right-color: #ccc;
  border-bottom-width: 2px;
}

table th {
  font-size: 14px;
  background-color: #333;
  border-top-color: #333;
  border-bottom-color: #333;
  color: #fff;
  font-weight: normal;
  text-align: center;
  padding: 2px 5px;
}

table th:first-child {
  border-left-color: #333;
}

table th:last-child {
  border-right-color: #333;
}

table tr.stick {
  background-color: #ddd;
}

table td {
  font-size: 14px;
  color: #333;
  padding: 4px 5px;
  text-align: right;
}

table td.name a {
  text-decoration: none;
  color: blue;
}

table td.name em {
  font-style: normal;
  color: #999;
}

table td.amount {
  color: #333;
  background-color: rgba(255, 255, 255, 0.3);
}
table td.amount.up {
  background-color: rgba(255, 0, 0, 0.3);
}
table td.amount.down {
  background-color: rgba(0, 255, 0, 0.3);
}

table td i {
  font-style: normal;
  display: inline-block;
  transform: scale(0.8);
  margin: 0 0 0 -5px;
  opacity: 0.5;
}

table td.sum.up {
  color: red;
}

table td.sum.down {
  color: green;
}

table td.charts {
  padding: 0;
}

#loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.5);
  align-items: center;
  justify-content: center;
  display: flex;
}

#loading.hide {
  display: none;
}

#goTop {
  position: fixed;
  right: 20px;
  bottom: 40px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ccc;
  font-size: 14px;
  text-align: center;
  line-height: 50px;
  color: #666;
  cursor: pointer;
}

.pager {
  padding-top: 20px;
}
.pageItem {
  display: inline-block;
  vertical-align: center;
  padding: 0 15px;
  line-height: 40px;
  margin-right: 5px;
  border: 1px solid #e7e7e7;
  font-size: 24px;
  text-decoration: none;
}
.pageItem.current {
  border: none;
  color: #333;
}
