#gl-live-results {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 48px rgba(0,0,0,.13);
    border: 1px solid #e8edf2;
    max-height: 500px;
    overflow-y: auto;
    display: none;
    z-index: 10001;
    text-align: left;
}

.gl-sr-cat { padding: 10px 0 4px; }
.gl-sr-cat + .gl-sr-cat { border-top: 1px solid #f0f4f8; }

.gl-sr-cat-header {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 4px 18px 8px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--themeht-primary-color, #0085B9);
}

.gl-sr-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 18px;
    color: #2d3748;
    text-decoration: none;
    transition: background .13s;
}
.gl-sr-item:hover,
.gl-sr-item.gl-sr-active {
    background: #f0f7fd;
    color: var(--themeht-primary-color, #0085B9);
    text-decoration: none;
}

.gl-sr-thumb {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f0f4f8;
}
.gl-sr-thumb-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--themeht-primary-color, #0085B9);
    opacity: .7;
}

.gl-sr-title {
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.35;
}

.gl-sr-empty,
.gl-sr-loading {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 20px 18px;
    font-size: 14px;
    color: #6b7280;
}

.gl-sr-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #e5e7eb;
    border-top-color: var(--themeht-primary-color, #0085B9);
    border-radius: 50%;
    animation: glSpin .6s linear infinite;
    flex-shrink: 0;
}
@keyframes glSpin { to { transform: rotate(360deg); } }

/* scrollbar */
#gl-live-results::-webkit-scrollbar { width: 5px; }
#gl-live-results::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 4px; }
