.price-cell {
  position: relative;
  padding-right: 1.5em;

  &::after {
    content: 'ℹ️';
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 0.75em;
    cursor: pointer;
    line-height: 1;
  }

  .date-popup {
    position: absolute;
    top: -0.5em;
    right: 2.5em;
    background: #f0f0f0;
    padding: 4px 8px;
    border: 1px solid #DCDCDC;
    border-radius: 4px;
    font-size: 1em;
    font-weight: normal;
    white-space: pre-line;
    display: none;
    z-index: 10;
    color: #333;

    .sale-label {
      color: #f00;
      font-weight: bold;
      display: block;
      margin-top: 2px;
    }
  }

  &.sale {
    color: #f00;
    font-weight: bold;
  }
}
