/* Sticky scrollable sidebar — matches cheats.html UX */
.wiki-topnav-sidebar {
    position: sticky;
    top: 5rem;
    align-self: flex-start;
    max-height: calc(100vh - 5rem - 2rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-bottom: 2.5rem;
    flex-shrink: 0;
    scrollbar-width: thin;
    scrollbar-color: #D4A373 #fefae0;
}

.wiki-topnav-sidebar::-webkit-scrollbar {
    width: 8px;
}

.wiki-topnav-sidebar::-webkit-scrollbar-track {
    background: #fefae0;
}

.wiki-topnav-sidebar::-webkit-scrollbar-thumb {
    background: #D4A373;
    border-radius: 4px;
}

.wiki-topnav-sidebar::-webkit-scrollbar-thumb:hover {
    background: #c49263;
}
