
.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.sitemap-container {
    width: 600px;
}


.sitemap-title {
    background-color: var(--box-background-color);
    padding: 3px 5px;
    text-align: end;
}


.sitemap-item {
    position: relative;
    margin-top: 10px;
}

.sitemap-item:not(.nested) a, .sitemap-item:not(.nested) span {
    background-color: var(--box-background-color);
    padding: 3px 5px;
}

.nested {
    margin-left: 3em;
}

.nested::before {
    content: "";
    height: 0.7em;
    width: 0.5em;
    position: absolute;
    top: 0px;
    left: -15px;
    border-left: 1px solid var(--box-border-color-2);
    border-bottom: 1px solid var(--box-border-color-2);
    border-radius: 0px 2px;
}


.tab {
    text-transform: uppercase;
    font-size: 70%;
    vertical-align: top;
    color: var(--box-border-color-2);
}

.out::after {
    content: "↗";
    padding: 0px 3px;
    /* vertical-align: top; */
}

a {
    text-decoration: none;
    color: var(--text-color);
}

a:hover {
    text-decoration: underline;
    color: var(--highlight-color);
}


@media only screen and (max-width: 700px) {

    .main-container {
        padding: 10px;
    }

    .sitemap-container {
        width: 100%;
    }

    .sitemap-item {
        margin-top: 10px;
    }
}