.contents-table, .contents-table *{
    cursor: url("https://static.igem.wiki/teams/5542/img/pen-cursor.webp") 0 72, auto !important;
}
.contents-table{
    height: calc(100vh - 80px - 2rem);
    width: 23vw;
    height: fit-content;
    padding: 1rem;
    background-color: #FBE9CE;
    cursor: url("https://static.igem.wiki/teams/5542/img/pen.webp") 0 0, auto;
    display: flex;
    flex-grow: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: sticky;
    top: 80px;
    left: 0;
}
.contents-table-chapters{
    width: calc(100% - 5.5rem);
    height: fit-content;
    padding: 4rem 1.5rem 2.5rem 4rem;
    background-image: url("https://static.igem.wiki/teams/5542/img/reel-upper.webp");
    background-repeat: no-repeat;
    background-size: 100%;
    overflow: visible;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
}
.contents-table-label{
    height: 1.5vw;
    display: block;
    position: absolute;
    top: 1.1vw;
    left: 50%;
    transform: translate(-50%, 0);
}
.contents-table-chapters ul{
    padding: 1rem 3.5rem 1rem 1rem;
    overflow-y: auto;
    scrollbar-width: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
}
.contents-table-chapters[data-active="true"]{
    display: flex;
    max-height: calc(100vh - 9rem - 70px - 2vw);
}
.contents-table-chapter{
    width: 100%;
    height: fit-content;
    list-style: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.contents-table-chapter-link{
    font-size: 1.5rem;
    font-family: Playball;
    font-weight: bold;
    text-decoration: none;
    background: linear-gradient(to right, #000000, #000000) no-repeat left bottom;
    background-size: 0 0.25rem;
    transition: all 0.3s ease;
    position: relative;
}
.contents-table-chapter[data-hovered = "true"] .contents-table-chapter-link, .contents-table-chapter[data-active = "true"] .contents-table-chapter-link{
    background-size: 100% 0.25rem;
}
.contents-table-chapter-pen{
    width: 3rem;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    position: absolute;
    bottom: 0;
    left: 0;
}
.contents-table-chapter[data-hovered = "true"] .contents-table-chapter-pen, .contents-table-chapter[data-active = "true"] .contents-table-chapter-pen{
    visibility: visible;
    opacity: 1;
    left: 100%;
}
.contents-table-subchapters{
    width: calc(100% - 1rem);
    height: 0;
    padding: 0 0 0 4rem;
    margin-left: -3rem;
    overflow-y: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.5rem;
}
.contents-table-chapter[data-hovered = "true"] .contents-table-subchapters, .contents-table-chapter[data-active = "true"] .contents-table-subchapters{
    height: fit-content;
    padding: 1rem 0 1rem 4rem;
}
.contents-table-subchapter{
    font-family: Belleza;
    font-weight: bold;
    font-size: 1.25rem;
    text-decoration: none;
    position: relative;
}
.contents-table-subchapter img{
    width: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    position: absolute;
    left: -0.5rem;
    top: 50%;
    transform: translate(-100%, -50%);
}
.contents-table-subchapter:hover img, .contents-table-subchapter[data-active="true"] img{
    opacity: 1;
    visibility: visible;
}
.contents-table-subsubchapters{
    width: calc(100% - 1rem);
    height: 0;
    padding: 0 0 0 1rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.5rem;
}
.contents-table-bg{
    width: 100%;
    position: relative;
    transform: translate(0, -50%);
}
.contents-table-bg-lower{
    width: 100%;
}
.contents-table-bg-pen{
    width: 16rem;
    transition: all 0.3s ease;
    position: absolute;
    bottom: 100%;
    right: 0;
}
.contents-table:hover .contents-table-bg-pen{
    opacity: 0;
    visibility: hidden;
}