/* Small tweak for search dropdown look */
.global-search-wrapper {
    position: relative;
}
.global-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1050;
    background: #fff;
    border-radius: 0.4rem;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    margin-top: 4px;
    max-height: 320px;
    overflow-y: auto;
}
.global-search-results ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.global-search-results li {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.global-search-results li:hover {
    background: #f3f3f3;
}
.global-search-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}
.global-search-meta {
    font-size: 11px;
    color: #888;
}
