
.text-container {
  position: relative;
  width: 200px;
  cursor: pointer;
}

/* truncated text */
.short-text {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* hover box */
.full-text {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 300px;
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 10;
  font-size: 0.8rem;
  white-space: wrap;
}

/* show on hover */
.text-container:hover .full-text {
  display: block;
}

.thead-td-full th {
  white-space: nowrap;
}
.thead-td-full td {
  white-space: nowrap;
}