#nav-bar {
    padding: 0.625rem 0 0 0;
    display: flex;
    flex-direction: row;
    gap: 0.25rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    align-content: flex-end;
}

#footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.accent-data {
    color: var(--accent);
}

.theme-transition {
    transition:
        color 0.3s ease,
        background-color 0.3s ease;
}

.tags-data {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-begin;
}

.title-list li {
    margin-bottom: 0.375rem;
}

/* icons settings */
.icons {
    width: 1.3rem;
    height: 1.3rem;
    aspect-ratio: 1/1;
    display: inline-block;
    vertical-align: middle;
    color: var(--text);
    fill: var(--text);
    background-color: transparent;
    cursor: pointer;
}

.icons:hover {
    background-color: transparent;
    color: var(--accent);
}

/* footnotes */
.footnote-definition {
    margin: 0 0 0 0.125rem;
}

.footnote-definition-label {
    color: var(--accent);
}

.footnote-definition p {
    display: inline;
    margin: 0.625rem 0 0 0.625rem;
}

/* general classes */
.no-style {
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0;
}

.no-style:hover {
    background-color: transparent;
    color: var(--accent);
}

.center {
    text-align: center;
}

.center img {
    display: block;
    margin: 1rem auto;
}

.float-right {
    float: right;
}

.float-left {
    float: left;
}

/* shortcodes css */
.webring {
    margin: 0.375rem;
}

.video {
    width: 100%;
    height: auto;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    border: dashed 2px var(--accent);
    padding: .125rem;
}

img {
    max-width: 100%;
}

pre {
    white-space: pre;
    max-height: none;
}

::-webkit-scrollbar {
    height: var(--standard-border-radius);
}

::-webkit-scrollbar-thumb {
    border-radius: var(--standard-border-radius);
}

::-webkit-scrollbar-track {
    background: transparent;
}

.giscus-frame {
    max-width: none;
}