.count {
  text-align: right;
}

td {
  padding: 4px;
}

tr.data_line:hover {
  background-color: lightcyan;
}

tr.bold,
span.bold {
  font-weight: bold;
}

td.orderbysite {
  display: none;
}

@media screen and (max-width: 900px) {
  .valueless {
    display: none;
  }
}

.popup {
  position: fixed;
  top: 20%;
  left: 50%;
  display: none;
  background-color: #fff;
  padding: 2px;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  height: 300px;
  overflow: hidden;
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: darkblue;
  color: white;
}

.popup-title {
  padding-left: 10px;
}

.close-btn {
  background-color: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

#popup-content {
  height: calc(100% - 30px);
  overflow-y: auto;
}

.data_item_line {
  cursor: pointer;
}

tr.data_item_line:hover {
  background-color: lightcyan;
}

td.data_right {
  text-align: right;
}