/* Main dropdown container */
.kolf-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9999;
  max-height: 400px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  display: none;
  padding: 8px 0px 0 4px;
  scrollbar-gutter: stable;
}

/* Scroll fade effect */
.kolf-search-results::after {
  content: "";
  position: sticky;
  bottom: 38px; /* sits right above the sticky footer */
  left: 0;
  right: 0;
  height: 32px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
  z-index: 25;
}

/* Section headers */
.kolf-section h4 {
  margin: 6px 0;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  border-bottom: 1px solid #eee;
  padding-bottom: 4px;
}

/* Player & Article shared base */
.kolf-player,
.kolf-article {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 6px;
  text-decoration: none;
  color: #000;
  border-radius: 6px;
  transition: background 0.15s ease;
}

/* Hover effects */
.kolf-player:hover,
.kolf-article:hover {
  background: #efefef;
}

/* Player images — circular ESPN style */
.kolf-player img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f2f2f2;
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0,0,0,0.05);
}

/* Article images — wide thumbnails left of text */
.kolf-article img {
  width: 72px;
  height: 48px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Article content */
.kolf-article div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.kolf-player div strong,
.kolf-article div strong {
  font-size: 13px;
  color: #111;
  line-height: 1.35;
  margin-bottom: 2px;
}

.kolf-player span {
  font-size: 12px;
  color: #666;
}

.kolf-article p {
  font-size: 12px;
  color: #555;
  margin: 0;
  line-height: 1.4;
}

/* Empty state */
.kolf-empty {
  font-size: 13px;
  padding: 5px;
  text-align: center;
  color: #666;
}

/* Sticky footer for the “See all” link */
.kolf-see-all {
  position: sticky;
  bottom: 0;
  margin-top: auto;
  text-align: center;
  padding: 10px 12px;
  border-top: 1px solid #eee;
  background: #fafafa;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.05);
  z-index: 50;
}

.kolf-see-all a {
  display: inline-block;
  color: #0046ad !important;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none !important;
}

.kolf-see-all a:hover {
  text-decoration: underline !important;
}
