/*! tk2026 smart-search panel — autocomplete dropdown */
.tk2026-ss-panel {
    display: none;
    position: fixed;
    z-index: 99999;
    min-width: 280px;
    max-height: 60vh;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
    padding: 6px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.tk2026-ss-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    font-size: 11px;
    color: #5f6368;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-weight: 700;
}

.tk2026-ss-clear {
    background: none;
    border: 0;
    color: #1a73e8;
    font-size: 11px;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}
.tk2026-ss-clear:hover { background: #e8f0fe; }

.tk2026-ss-item {
    display: block;
    padding: 9px 12px;
    border-radius: 7px;
    text-decoration: none;
    color: #202124;
    cursor: pointer;
    line-height: 1.35;
}
.tk2026-ss-item + .tk2026-ss-item { margin-top: 2px; }
.tk2026-ss-item:hover,
.tk2026-ss-item.is-active {
    background: #e8f0fe;
}

.tk2026-ss-title {
    font-size: 14px;
    font-weight: 600;
    color: #202124;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.tk2026-ss-sub {
    font-size: 12px;
    color: #5f6368;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.tk2026-ss-item mark {
    background: #fff3cd;
    color: inherit;
    padding: 0 2px;
    border-radius: 3px;
    font-weight: 700;
}

.tk2026-ss-empty {
    padding: 14px 12px;
    color: #80868b;
    font-size: 13px;
    text-align: center;
}

@media (max-width: 768px) {
    .tk2026-ss-panel { max-height: 50vh; font-size: 14px; }
    .tk2026-ss-title { white-space: normal; }
    .tk2026-ss-sub { white-space: normal; }
}

/* Maycatdecal: thumbnail + body layout */
.tk2026-ss-item { display: flex; align-items: center; gap: 10px; }
.tk2026-ss-thumb {
    width: 44px; height: 44px; flex: 0 0 44px;
    border-radius: 6px; object-fit: cover; background: #f1f3f4;
    border: 1px solid #e8eaed;
}
.tk2026-ss-body { min-width: 0; flex: 1 1 auto; }
