/* Container */
.wj-live-wrap { position: relative; }

/* Dropdown */
.wj-live-results{
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 9999;
  display: none;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
  max-height: 60vh;
  overflow: auto;
  min-width: 100%;
}

/* Items */
.wj-live-results .wj-item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #111827;
  line-height: 1.25;
}

.wj-live-results .wj-item:hover,
.wj-live-results .wj-item.is-active{
  background: #f3f4f6;
}

.wj-live-results img{
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 6px;
  flex: 0 0 auto;
}

.wj-live-results .wj-meta{
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.wj-live-results .wj-title{
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wj-live-results .wj-price{
  font-size: 12px;
  color: #6b7280;
}

/* Empty/loading row */
.wj-live-results .wj-empty{
  padding: 10px 12px;
  font-size: 13px;
  color: #6b7280;
}

/* Basic dark-mode friendliness */
@media (prefers-color-scheme: dark){
  .wj-live-results{
    background: #0b0f14;
    border-color: #1f2937;
    box-shadow: 0 12px 28px rgba(0,0,0,.55);
  }
  .wj-live-results .wj-item{ color:#e5e7eb; }
  .wj-live-results .wj-item:hover,
  .wj-live-results .wj-item.is-active{
    background: #111827;
  }
  .wj-live-results .wj-title{ color:#e5e7eb; }
  .wj-live-results .wj-price,
  .wj-live-results .wj-empty{ color:#9ca3af; }
}