/* Container */
#channelResultsDropdown,
.artha-yt-results {
    margin-top: 10px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    max-height: 380px;
    overflow-y: auto;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Each item */
.channel-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f1f1f1;
    transition: background 0.15s ease, transform 0.15s ease;
}

/* Hover / Focus */
.channel-item:hover,
.channel-item:focus {
    background: #f8faff;
    transform: translateX(2px);
}

/* Thumb */
.channel-item img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Info */
.channel-item .info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    max-width: calc(100% - 60px);
}

/* Title */
.channel-item .title {
    font-size: 13px;
    font-weight: 600;
    color: #111;
    margin-bottom: 4px;
    white-space: normal;
}

/* Description */
.channel-item .desc {
    font-size: 12px;
    color: #555;
    max-height: 3.4em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* No results */
.channel-item.no-result,
.artha-yt-noresult {
    padding: 12px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* Scrollbar (beautiful minimal style) */
#channelResultsDropdown::-webkit-scrollbar,
.artha-yt-results::-webkit-scrollbar {
    width: 6px;
}
#channelResultsDropdown::-webkit-scrollbar-thumb,
.artha-yt-results::-webkit-scrollbar-thumb {
    background: #c7c7c7;
    border-radius: 3px;
}
#channelResultsDropdown::-webkit-scrollbar-thumb:hover,
.artha-yt-results::-webkit-scrollbar-thumb:hover {
    background: #999;
}




/*12-12-2025*/
.artha-yt-results {
    position: absolute;
    z-index: 11;
}
.artha-yt-search-wrap {
    position: relative;
}
/* hide the visible selected label and URL, keep only Change button */
.artha-yt-selected strong,
.artha-yt-selected .artha-yt-selected-url {
  display: none !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

button.artha-yt-clear {
    display: none !important;
}
/* small layout nicety */
.artha-yt-selected { padding-top: 6px; }
