/* Wrapper sits centered with ~10px air gap (match your screenshot) */
.nyh-cc-dd {
    display: flex;
    justify-content: center;
    margin: 10px 0 18px;
    position: relative;
}

/* Trigger button: matte, simple, handsome */
.nyh-cc-trigger {
    background: #2b2b2b;
    color: #fff;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.nyh-cc-trigger:focus {
    outline: 2px solid #7aa9ff;
    outline-offset: 2px;
}

.nyh-cc-trigger-arrow {
    opacity: .9
}

/* Menu: centered dropdown, no animation */
.nyh-cc-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #2b2b2b;
    border: 1px solid #3e3e3e;
    border-radius: 10px;
    margin-top: 8px;
    min-width: 280px;
    max-height: 60vh;
    overflow: auto;
    padding: 8px;
    display: none;
    z-index: 9999;
    box-shadow: 0 0 8px rgba(0, 0, 0, .4);
}

.nyh-cc-dd.open .nyh-cc-menu {
    display: block;
}

.nyh-cc-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Pastel options: thin “link-feel”, not balloons */
.nyh-cc-opt {
    --cc-bg: #888;
    --cc-fg: #111;
    display: block;
    padding: 6px 10px;
    margin: 6px 0;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--cc-bg);
    color: var(--cc-fg);
    border: 1px solid rgba(255, 255, 255, .07);
}

.nyh-cc-opt:focus {
    outline: 2px solid #7aa9ff;
    outline-offset: 2px;
}

.nyh-cc-opt:hover {
    filter: brightness(1.03);
}

/* Badges before titles (unchanged, thin) */
.nyh-cc-badge {
    --cc-bg: #777;
    --cc-fg: #111;
    background: var(--cc-bg);
    color: var(--cc-fg);
    padding: 3px 8px;
    margin-right: 8px;
    border-radius: 6px;
    font-size: .75rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, .07);
}

.nyh-cc-badge a {
    color: inherit;
    text-decoration: none;
}

.nyh-cc-badge a:hover {
    text-decoration: underline;
}