.custom-h2-list {
    display: flex;
    gap: 10px;
    position: sticky;
    top: 0;
    background: #e1e1e1;
    padding: 3px;
    border-radius: 5px;
	margin-bottom: 10px;
	overflow-x: auto;
}
html {
  scroll-behavior: smooth;
}

div#toc a {
    background: white;
    padding: 10px 5px;
    border-radius: 8px;
    flex: 1;
    text-align: center;
    font-weight: bold;
        min-width: fit-content;
}

div#toc a:hover {
  text-decoration: none !important;
}

.fixed-toc {
    position: fixed;
    top: 0;
    z-index: 999;
    background: white;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

div#toc a.special-h2::after {
    content: 'ssss';
    margin-right: 5px;
    background: url(./start.svg);
    color: transparent;
    background-repeat: no-repeat;
    background-size: contain;
}

#toc.fix-top {
	position: fixed;
	top: 0;
	z-index: 9999;
}