.tracklist-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.tracklist-table col:nth-child(1) {
    width: 2rem; /* or min-content */
}

.tracklist-table col:nth-child(2) {
    width: 70%;
}

.tracklist-table col:nth-child(3) {
    width: 30%;
}

.tracklist-table th {
    text-align: left;
    padding: 0.5rem;
    border-bottom: 1px solid #2d2d2d;
}

.tracklist-table td {
    padding: 0.5rem;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-mask-image: linear-gradient(to right, transparent, black 12px, black calc(100% - 12px), transparent);
    mask-image: linear-gradient(to right, transparent, black 12px, black calc(100% - 12px), transparent);
}

/*[ctl] {
  display: inline-block;
  padding: 0 8px;
  height: 18px;
  line-height: 18px;
  border-radius: 9999px;

  * Aqua glossy look – darker blue *
  background: linear-gradient(to bottom, #8fc8ff 0%, #3b9dff 50%, #1d6ed9 100%);
  border: 1px solid #0e4c9c;

  /* Inner highlight / bevel *
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.85),
    inset 0 -1px 2px rgba(0, 0, 0, 0.2),
    0 1px 2px rgba(0, 0, 0, 0.4);

  /* Text *
  color: #062a4d;
  font-size: 12px;
  font-weight: 600;
  font-family: "Lucida Grande", "Helvetica Neue", Arial, sans-serif;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);

  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  -webkit-user-select: none;
}*/


