.character-page-toc {
    position: fixed;
    top: 120px;
    right: 16px;
    width: 184px;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    padding: 10px;
    z-index: 150;
    display: none;
}

.character-page-toc[hidden] {
    display: none !important;
}

.character-page-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.character-page-toc-item + .character-page-toc-item {
    margin-top: 6px;
}

.character-page-toc-link {
    width: 100%;
    border: 0;
    appearance: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
    padding: 6px 8px;
    font-size: 12px;
    line-height: 1.35;
    cursor: pointer;
    transition: color 0.2s ease;
}

.character-page-toc-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.character-page-toc-link.active {
    color: #ffffff;
    font-weight: 700;
}

.character-page-toc-link:focus-visible {
    outline: 1px solid rgba(255, 255, 255, 0.35);
    outline-offset: 1px;
}

@media (min-width: 1281px) {
    .character-page-toc {
        display: block;
    }
}

@media (max-width: 1280px) {
    .character-page-toc {
        display: none !important;
    }
}
