.wiki_center {
    text-align: center;
}

.wiki_underline {
    text-decoration: underline;
}

/* class if there is a toc */
.wiki-topic-nav {
    position: fixed;
    left: 1%;
    width: 17%;
    font-size: large;
    color: #2d2d2d;
}

@media (max-width: 1500px) {
    .wiki-topic-nav {
        display: none;
    }
}

.wiki-nav-content-wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

}
.wiki-content {
    margin-left: 20%;
    margin-right: 10%;
    width: 70%;
}

@media (max-width: 1500px) {
    .wiki-content {
        margin-left: 10%;
        margin-right: 10%;
        width: 80%;
    }
}

.subLinkContainer{
   margin-left: 10px;
}


/* class image in editor page */
.image-editor-display {
    position: relative;
    width: 100%;
}

/* Make the image responsive */
.image-editor-display img {
    height: 100%;
}

/* Style the button and place it in the middle of the container/image */
.image-editor-display .button-container {
    position: absolute;
    top: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.image-editor-display .button-container button{
    margin-left: 10px;
    margin-right: 10px;
}
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    justify-items: center;
    align-items: center;
    overflow: auto;
    height: 100%;
}
