@import url("https://repo.0x8e.net/tetratto-aux/utility.css");

:root {
    color-scheme: light dark;

    --color-super-lowered: oklch(87.1% 0.006 286.286);
    --color-super-lowered-75: oklch(87.1% 0.006 286.286 / 75%);
    --color-lowered: oklch(96.7% 0.001 286.375);
    --color-surface: oklch(0.94 0.001 106.424);
    --color-raised: oklch(98.4% 0.003 247.858);
    --color-raised-75: oklch(98.4% 0.003 247.858 / 75%);
    --color-super-raised: oklch(96.8% 0.007 247.896);
    --color-super-raised-75: oklch(96.8% 0.007 247.896 / 75%);
    --color-text: hsl(0, 0%, 5%);

    --color-primary: oklch(0.7824 0.1106 274.89);
    --color-primary-25: oklch(0.7824 0.1106 274.89 / 25%);
    --color-primary-lowered: oklch(0.7024 0.1106 274.89);
    --color-text-primary: hsl(0, 0%, 5%);

    --color-link: #2949b2;
    --color-shadow: rgba(0, 0, 0, 0.08);
    --color-red: hsl(0, 84%, 40%);
    --color-green: hsl(100, 84%, 20%);
    --color-yellow: oklch(47% 0.157 37.304);
    --color-purple: hsl(284, 84%, 20%);
    --color-green-lowered: hsl(100, 84%, 15%);
    --color-red-lowered: hsl(0, 84%, 35%);

    --radius: 0;
    --nav-height: 36px;

    --pad-1: 0.2rem;
    --pad-2: 0.35rem;
    --pad-3: 0.5rem;
    --pad-4: 1rem;
}

.dark,
.dark * {
    --color-super-lowered: oklch(34.2% 0.017 285.786);
    --color-super-lowered-75: oklch(34.2% 0.017 285.786 / 75%);
    --color-lowered: oklch(27% 0.013 285.805);
    --color-surface: oklch(11% 0.006 285.885);
    --color-raised: oklch(17.4% 0.006 286.033);
    --color-raised-75: oklch(17.4% 0.006 286.033 / 75%);
    --color-super-raised: oklch(0.1948 0.0066 286.03);
    --color-super-raised-75: oklch(0.1948 0.0066 286.03 / 75%);
    --color-text: hsl(0, 0%, 95%);

    --color-link: #93c5fd;
    --color-red: hsl(0, 94%, 82%);
    --color-green: hsl(100, 94%, 82%);
    --color-yellow: oklch(90.1% 0.076 70.697);
    --color-purple: hsl(284, 94%, 82%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
}

html,
body {
    line-height: 1.5;
    letter-spacing: 0.15px;
    color: var(--color-text);
    background: var(--color-surface);
    overflow: auto auto;
    height: 100dvh;
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-family:
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        system-ui,
        sans-serif,
        "Apple Color Emoji",
        "Segoe UI Emoji",
        "Segoe UI Symbol",
        "Noto Color Emoji";
}

/* nav */
nav {
    box-shadow: none;
    padding: 0;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--pad-2);

    & .dropdown:has(.inner.open) .button:nth-child(1):not(.inner *) {
        background: var(--color-raised);
        color: var(--color-text-raised);
        opacity: 100% !important;
    }

    & .dropdown .inner {
        top: calc(100%);
    }

    & .button:not(.dropdown.inner *) {
        --h: var(--nav-height);
    }
}

/* container */
.container {
    margin: 10px auto 0;
    width: 100%;
}

.container.small {
    margin: 0 auto;
    max-width: 42ch;
}

.content_container {
    margin: 0 auto var(--pad-2);
    width: 100%;
}

@media screen and (min-width: 500px) {
    .content_container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .content_container {
        max-width: 720px;
    }
}

@media (min-width: 900px) {
    .content_container {
        max-width: 960px;
    }

    @media (min-width: 1200px) {
        article {
            padding: 0;
        }

        .content_container {
            max-width: 1100px;
        }
    }
}

#content_rect {
    margin: 10px auto 0 !important;
}

#tabs_group {
    margin: 0 !important;
}

#inner_preview_tab {
    margin: 0;
}

.content_container {
    margin: 0 auto var(--pad-2);
    width: 100%;
}

.tab {
    flex: 1 0 auto;
    overflow: auto;
    position: relative;
}

.tabs .tab {
    height: 100%;
}

.fadein {
    animation: fadein ease-in-out 1 0.5s forwards running;
}

main {
    width: 80ch;
    margin: var(--pad-4) auto;
    padding: var(--pad-3) var(--pad-4);
}

article {
    margin: var(--pad-2) 0;
    height: calc(100dvh - var(--pad-4) - var(--nav-height) * 2);
}

@media screen and (max-width: 900px) {
    main,
    article,
    nav,
    header,
    footer {
        width: 100%;
    }

    article {
        margin-top: 0;
    }

    main {
        padding: 0;
    }
}

/* card */
.card,
.card_nest {
    box-shadow: none !important;
}

/* typo */
a {
    text-decoration: none;
    color: var(--color-link);

    &.flush {
        color: inherit;
    }

    &:hover {
        text-decoration: underline dotted currentColor;
    }
}

p,
ul,
ol {
    margin-bottom: var(--pad-4) !important;

    &:last-child {
        margin-bottom: 0 !important;
    }
}

ul,
ol {
    margin: var(--pad-2) 0 var(--pad-2) var(--pad-4);
    padding-left: 2rem;
}

pre {
    padding: var(--pad-2) var(--pad-4);
    border-left: solid 5px var(--color-primary);
    background: var(--color-surface);
    border-radius: var(--radius);
    margin-bottom: var(--pad-4);
}

code {
    padding: 0;
}

pre,
code {
    font-family: "Jetbrains Mono", "Fire Code", monospace;
    width: 100%;
    max-width: 100%;
    overflow: auto;
    border-radius: var(--radius);
    font-size: 0.8rem !important;
    color: inherit;
}

code * {
    font-size: 0.8rem !important;
}

code:not(pre *) {
    padding: var(--pad-1) var(--pad-2);
    background: oklch(98% 0.016 73.684 / 25%);
    color: oklch(90.1% 0.076 70.697);
    border-radius: var(--radius);
    white-space: break-spaces;
}

code:not(pre *):not(.dark *) {
    background: oklch(83.7% 0.128 66.29 / 25%);
    color: oklch(47% 0.157 37.304);
}

mark {
    padding: var(--pad-2) var(--pad-3);
    border-radius: 2px;
    color: oklch(42.1% 0.095 57.708);
    background: oklch(94.5% 0.129 101.54 / 50%);
    line-height: 3ch;

    &:is(.dark *) {
        color: oklch(97.3% 0.071 103.193);
        background: oklch(68.1% 0.162 75.834 / 25%);
    }
}

svg.icon {
    stroke: currentColor;
    fill: currentColor;
    width: 18px;
    height: 1em;
}

svg.icon.filled {
    fill: currentColor;
}

.no_fill svg.icon {
    fill: transparent;
}

.big_icon svg.icon {
    width: 18px;
    height: 18px;
    position: absolute;
}

button svg {
    pointer-events: none;
}

hr {
    border-top: solid 1px var(--color-super-lowered) !important;
    border-left: 0;
    border-bottom: 0;
    border-right: 0;
}

hr.margin,
.container hr {
    margin: var(--pad-4) 0;
}

span.img_sizer {
    display: inline-block;
}

.color_block a {
    color: inherit;
}

:is(h1, h2, h3, h4, h5, h6) :is(p, p *) {
    font-variation-settings: inherit !important;
    font-size: inherit !important;
}

:is(h1, h2, h3, h4, h5, h6) {
    width: 100%;
    font-weight: 900 !important;
}

img {
    display: inline;
    max-width: 100%;
    vertical-align: middle;
}

.img_sizer img {
    width: 100%;
    height: 100%;
}

.avatar {
    --size: 18px;
    width: var(--size);
    height: var(--size);
    aspect-ratio: 1 / 1;
}

blockquote {
    padding-left: 1rem;
    border-left: solid 3px var(--color-green);
    color: var(--color-green);
}

li > blockquote {
    margin: 1rem 0 1rem 0;
}

ul > li {
    margin-top: 0.25em;
    margin-bottom: 0.5rem;

    & br {
        display: none;
    }

    & p {
        margin: 0 !important;
    }
}

p,
span {
    font-size: inherit;
}

p,
li,
span,
code {
    max-width: 100%;
    overflow-wrap: normal;
    text-wrap: stable;
    word-wrap: break-word;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.35rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: var(--pad-4) 0;
    font-weight: 700;
    width: -moz-max-content;
    position: relative;
    max-width: 100%;
    width: 100%;

    & * {
        font-size: inherit;
    }

    & br {
        display: none;
    }

    & p {
        margin: 0 !important;
    }
}

h1 {
    text-align: center;
    margin: 2rem 0;
    width: 100%;
}

/* codemirror/hljs */
.CodeMirror {
    color: var(--color-text) !important;
}

.CodeMirror {
    background: transparent !important;
    font-family: inherit !important;
    height: 10rem !important;
    min-height: 100%;
    max-height: 100%;
    cursor: text;
}

.CodeMirror-cursor {
    border-color: rgb(0, 0, 0) !important;
}

.cm-fat-cursor-mark {
    color: white;
    background-color: rgb(0, 0, 0) !important;
}

.CodeMirror-cursor:is(.dark *) {
    border-color: rgb(255, 255, 255) !important;
}

.cm-fat-cursor-mark:is(.dark *) {
    color: black;
    background-color: rgb(255, 255, 255) !important;
}

.CodeMirror-cursor {
    height: 22px !important;
}

.CodeMirror-dialog {
    position: absolute;
    bottom: 5px;
    width: 100%;
    background: var(--color-surface);
    padding: 0 var(--pad-2);
    top: 1;
}

.CodeMirror-dialog input {
    --h: max-content;
    padding: 0;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}

[role="presentation"]::-moz-selection,
[role="presentation"] *::-moz-selection {
    background-color: rgb(191, 219, 254) !important;
}

[role="presentation"]::selection,
[role="presentation"] *::selection,
.CodeMirror-selected {
    background-color: rgb(191, 219, 254) !important;
}

[role="presentation"]:is(.dark *)::-moz-selection,
[role="presentation"] *:is(.dark *)::-moz-selection {
    background-color: rgb(64, 64, 64) !important;
}

[role="presentation"]:is(.dark *)::selection,
[role="presentation"] *:is(.dark *)::selection,
.CodeMirror-selected:is(.dark *) {
    background-color: rgb(64, 64, 64) !important;
}

.cm-header {
    color: inherit !important;
}

.cm-variable-2,
.cm-quote,
.cm-keyword,
.cm-string,
.cm-atom,
.hljs-string {
    color: rgb(63, 98, 18) !important;
}

.cm-variable-2:is(.dark *),
.cm-quote:is(.dark *),
.cm-keyword:is(.dark *),
.cm-string:is(.dark *),
.cm-atom:is(.dark *),
.hljs-string:is(.dark *) {
    color: rgb(217, 249, 157) !important;
}

.cm-comment,
.hljs-keyword {
    color: oklch(47% 0.157 37.304) !important;
}

.cm-comment:is(.dark *),
.hljs-keyword:is(.dark *) {
    color: oklch(90.1% 0.076 70.697) !important;
}

.cm-link {
    color: var(--color-link) !important;
}

.cm-url,
.cm-property,
.cm-qualifier,
.hljs-title,
.cm-variable {
    color: rgb(29, 78, 216) !important;
}

.cm-url:is(.dark *),
.cm-property:is(.dark *),
.cm-qualifier:is(.dark *),
.hljs-title:is(.dark *),
.cm-variable:is(.dark *) {
    color: rgb(191, 219, 254) !important;
}

.cm-variable-3,
.cm-tag,
.cm-def,
.cm-attribute,
.cm-number,
.hljs-type {
    color: rgb(91, 33, 182) !important;
}

.cm-variable-3:is(.dark *),
.cm-tag:is(.dark *),
.cm-def:is(.dark *),
.cm-attribute:is(.dark *),
.cm-number:is(.dark *),
.hljs-type:is(.dark *) {
    color: rgb(221, 214, 254) !important;
}

.hljs-built_in {
    color: var(--color-purple) !important;
}

.hljs-variable {
    color: var(--color-link) !important;
}

.hljs-number {
    color: var(--color-green) !important;
}

.hljs-link {
    color: var(--color-link) !important;
}

.CodeMirror-scroll {
    height: 100% !important;
}

.CodeMirror-line {
    padding-left: 0 !important;
    font-size: 16px !important;
}

.CodeMirror-focused .CodeMirror-placeholder {
    opacity: 50%;
}

.hljs {
    background: transparent !important;
    color: inherit !important;
    padding: 0 !important;
}

/* extra */
.gap_ch {
    gap: 1ch;
}

@keyframes fadein {
    from {
        opacity: 0%;
    }

    to {
        opacity: 100%;
    }
}

.loader {
    animation: spin linear infinite 2s forwards running;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes spin {
    from {
        transform: rotateZ(0deg);
    }

    to {
        transform: rotateZ(360deg);
    }
}

.items-end {
    align-items: flex-end;
}

/* table */
table {
    width: 100%;
    table-layout: auto;
    margin: var(--pad-4) 0;
    border-collapse: separate;
    border-spacing: 0;
    border: solid 1px var(--color-super-raised);
}

table td,
table th {
    padding: var(--pad-2) var(--pad-4);
}

table tr:not(thead *):nth-child(odd) {
    background: var(--color-super-raised);
}

table thead th {
    text-align: left;
}

/* details */
details {
    width: 100%;
    /*margin: var(--pad-4) 0;*/
}

details summary {
    background: var(--color-super-raised);
    padding: var(--pad-2) var(--pad-4);
    cursor: pointer;
}

details .content {
    padding: var(--pad-4);
    background: var(--color-surface);
}

/* dialog */
dialog {
    background: var(--color-surface);
    color: var(--color-text);
    box-shadow: var(--shadow-x-offset) var(--shadow-y-offset) var(--shadow-size)
        var(--color-shadow);
    animation: fadein ease-in-out 1 0.25s forwards running;
    max-width: 95%;
    width: 30rem;
    margin: auto;
    padding: var(--pad-4);
    border: 0;
}

dialog .inner {
    display: flex;
    flex-direction: column;
    gap: var(--pad-2);
}

dialog::backdrop {
    background: hsla(0, 0%, 0%, 25%);
    backdrop-filter: blur(2px);
}

dialog:is(.dark *)::backdrop {
    background: hsla(0, 0%, 100%, 15%);
}

/* menus */
menu {
    display: flex;
}

menu .button {
    justify-content: flex-start;
    width: 100%;
}

menu .button.active {
    background: var(--color-super-raised);
}

menu.col {
    flex-direction: column;
    width: 25rem;
    max-width: 100%;
}

/* table */
.table_wrapper {
    z-index: 1;
    overflow: auto;
}

/* avatar */
.avatar {
    border-radius: 4px;
}

/* button */
.button:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* toc */
.table_of_contents_wrapper {
    margin: 10px auto 0 !important;
    height: max-content;
    position: sticky;
    top: 0;
}

.table_of_contents .item {
    opacity: 50%;
    font-variation-settings: "wght" 400;
    transition:
        opacity 0.15s,
        font-variation-settings 0.15s;
}

.table_of_contents .item.in_view {
    opacity: 100%;
    font-variation-settings: "wght" 600;
}

@media screen and (width < 900px) {
    .table_of_contents_wrapper {
        border-bottom: solid 1px var(--color-super-lowered);
        border-top: solid 1px var(--color-super-lowered);
        box-shadow: var(--shadow-x-offset) var(--shadow-y-offset)
            var(--shadow-size) var(--color-shadow);
        top: var(--nav-height);
        margin: 0 !important;
        position: absolute;
        width: 100dvw;
        z-index: 1;
    }
}

/* dropdown */
.dropdown {
    position: relative;
}

.dropdown .inner {
    --w: 10rem;
    display: none;
    flex-direction: column;
    box-shadow: var(--shadow-x-offset) var(--shadow-y-offset) var(--shadow-size)
        var(--color-shadow);
    background: var(--color-raised);
    color: inherit;
    position: absolute;
    z-index: 2;
    top: calc(100% + 5px);
    right: 0;
    width: max-content;
    max-width: var(--w);
    min-width: var(--w);
    border-radius: calc(var(--radius) * 2);
    overflow: hidden;
}

.dropdown .inner.surface {
    background: var(--color-surface);
}

.dropdown .inner.left {
    right: unset;
    left: 0;
}

.dropdown .inner.open {
    display: flex;
}

.dropdown .inner .button,
.dropdown .inner .title {
    padding: var(--pad-3) var(--pad-4);
    justify-content: flex-start;
    width: 100%;
}

.dropdown .inner .title {
    font-weight: 600;
    font-size: 14px;
}

.dropdown:has(.inner.open) .button:nth-child(1):not(.inner *) {
    background: var(--color-raised);
}

.dropdown .inner.top {
    top: unset;
    bottom: 100%;
}

.dropdown .inner.left {
    left: 0;
    right: unset;
}

.dropdown .dropdown_arrow {
    transition: transform 0.15s;
}

.dropdown:has(.inner.open) .dropdown_arrow {
    transform: rotateZ(180deg);
}

.dropdown .inner .button {
    --h: 36px;
    border: none;
    border-radius: 0;

    &:not(.red, .green) {
        background: var(--color-raised);

        &:hover {
            background: var(--color-super-raised);
        }
    }
}

/* input */
input,
textarea,
select {
    --h: 34px;
    padding: var(--pad-2) calc(var(--pad-3) * 1.5);
    background: var(--color-raised);
    color: var(--color-text);
    outline: solid 2px transparent;
    width: max-content;
    border: none;
    transition:
        background 0.15s,
        border 0.15s,
        outline 0.15s,
        box-shadow 0.15s;
    box-shadow: none !important;
    height: var(--h);
    line-height: inherit;
    width: 100%;
    resize: vertical;
    border-radius: var(--radius);
    font-family: inherit;
}

input.surface,
textarea.surface,
select.surface {
    background: var(--color-surface);
}

input:not([type="checkbox"]):focus,
textarea:focus,
select:focus {
    background: var(--color-super-raised);
}

input:user-invalid,
input[data-invalid] {
    outline: solid 2px var(--color-red);
}

input[type="checkbox"] {
    height: max-content;
}

textarea {
    font-family: inherit;
    resize: vertical;
    min-height: 15rem;
}

input:disabled,
input[disabled] {
    opacity: 50%;
}

/* inputs */
:is(input, textarea, select):focus {
    border-color: var(--color-primary) !important;
    outline: solid 2px var(--color-primary-25) !important;
    box-shadow: 0 0 0 4px oklch(0.7824 0.1106 274.89 / 15%) !important;
}

input:disabled {
    opacity: 50%;
}

/* card */
.card {
    padding: var(--pad-4);
    background: var(--color-raised);
    color: var(--color-text);
}

.card.hero {
    background: var(--color-primary);
    color: var(--color-text-primary);
}

.card.thick {
    padding: calc(var(--pad-4) * 2);
}

.card.small {
    padding: calc(var(--pad-4) * 0.5) var(--pad-4);
}

.card.wide {
    min-width: 35rem;
    max-width: 100dvw;

    @media screen and (max-width: 899px) {
        & {
            min-width: 100%;
        }
    }
}

.card_nest:not(.reverse) > .card:nth-child(1) {
    background: var(--color-super-raised);
    padding: var(--pad-2) var(--pad-4);
}

.card_nest.reverse > .card:nth-child(2) {
    background: var(--color-super-raised);
    padding: var(--pad-2) var(--pad-4);
}

.card.surface {
    background: var(--color-surface);
}

.card .card:not(details .card) {
    border-radius: var(--radius);
}

.card_nest {
    --r: var(--radius);
    border-radius: var(--r) !important;

    &.round_lg {
        --r: calc(var(--radius) * 2);
    }
}

.card_nest.round > .card:not(:first-child) {
    border-top: none;
    background: var(--color-super-raised);
}

.card_nest.round > .card:not(:last-child) {
    border-radius: 0;
}

.card_nest.round > .card:first-child {
    border-radius: var(--r) var(--r) 0 0;
}

.card_nest.round > .card:last-child {
    border-radius: 0 0 var(--r) var(--r);
}

@media screen and (max-width: 900px) {
    .card:not(dialog *, .card *, .page_header *) {
        border-radius: 0 !important;
    }
}

/* details */
details {
    width: 100%;
}

details summary {
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 0.5ch;
    transition:
        border-radius 0.15s,
        background 0.15s,
        color 0.15s;
    background: var(--color-super-raised);
    padding: var(--pad-2) var(--pad-4);
    cursor: pointer;
    border-radius: var(--radius);

    &::marker,
    &::-webkit-details-marker {
        display: none;
        content: "";
    }

    & .marker {
        transition: transform 0.15s;
        width: max-content;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

details[open] > summary {
    border-radius: var(--radius) var(--radius) 0 0;

    & .marker {
        transform: rotateZ(90deg);
    }
}

details .inner {
    border-radius: 0 0 var(--radius) var(--radius);
    background: var(--color-surface);
    color: var(--color-text);
    padding: var(--pad-4);

    &.raised {
        background: var(--color-raised);
    }
}

details[open] > summary {
    border-radius: var(--radius) var(--radius) 0 0;
    border-bottom: none;
}

/* button */
.button {
    --h: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    appearance: none;
    outline: none;
    border: none;
    color: var(--color-text-button);
    transition:
        background 0.15s,
        border-color 0.15s;
    cursor: pointer;
    border-radius: var(--radius);
    width: max-content;
    height: var(--h);
    min-height: var(--h);
    padding: 0 var(--pad-4);
    background: var(--color-raised);
    text-decoration: none !important;
    gap: var(--pad-2);
    position: relative;
    overflow: hidden;
    min-width: max-content;
    white-space: pre;
    font-family: inherit;

    &:hover {
        background: var(--color-super-raised);
    }

    &.small {
        padding: 0 var(--pad-2);
        height: 24px;
        font-size: 0.8rem;
    }

    &.round {
        border-radius: 6px !important;
    }

    &.icon_only {
        width: var(--h);
        max-width: var(--h);
        min-width: var(--h);
        aspect-ratio: 1 / 1;

        &.super_small {
            --h: 18px;
            font-size: 12px;
            padding: 0;
        }
    }

    &.surface {
        background: var(--color-surface);

        &:hover {
            background: var(--color-super-raised);
        }
    }

    &.camo {
        background: none;
        color: inherit;
        border-color: transparent;

        &:hover {
            background: var(--color-raised);
            border-color: var(--color-super-lowered);
        }
    }

    &.green:not(.dark *) {
        background: var(--color-green);
        color: white !important;

        &:hover {
            background: var(--color-green-lowered);
        }
    }

    &.red:not(.dark *) {
        background: var(--color-red);
        color: white !important;

        &:hover {
            background: var(--color-red-lowered);
        }
    }
}

.button.primary {
    color: var(--color-text-primary);
    border: solid 1px var(--color-primary-lowered);
    background: var(--color-primary);

    &:hover {
        border-color: var(--color-primary);
        background: var(--color-primary-lowered);
        color: var(--color-text-primary);
    }
}

.button:not(.tab, .dropdown .inner *, .square, menu *) {
    border-radius: var(--radius);
}

.button:disabled {
    opacity: 50%;
    cursor: not-allowed;
}

.button.big {
    --h: 48px;
    width: 100%;
}

.button.padded {
    padding: 0 var(--pad-4);

    &.big {
        padding: 0 calc(var(--pad-4) * 2);
    }
}

.button.tab_button,
.button.faux_tab_button {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-bottom: none !important;
    padding: 0 calc(var(--pad-3) * 1.5);
    overflow: visible;

    &:hover {
        background: transparent;
    }
}

.button.tab_button:not(.camo, .tab_normal *),
.button.faux_tab_button:not(.camo) {
    background: var(--color-raised) !important;
    border-color: var(--color-super-lowered);
}

.bar {
    /*position: relative;*/
    /*top: 1px;*/
    /*margin-top: -5px;*/
    z-index: 1;

    & .button.camo:hover {
        color: var(--color-link);
    }
}

.bar:has(> :not(.camo):first-child) + * > .card {
    border-top-left-radius: 0 !important;
}

@media screen and (max-width: 900px) {
    .bar:not(.has_padding) .button:not(.camo):first-child {
        border-left: none;
    }
}

.tab_button:not(.tab_normal *) {
    outline: none !important;
    box-shadow: none !important;
}

.button_nest {
    display: flex;
    align-items: center;
    height: max-content;
}

.button_nest .button:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.button_nest .button:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background: var(--color-surface) !important;
    border-left: none;
}

.button.solid {
    background: var(--color-raised) !important;
    color: var(--color-text) !important;

    &:hover {
        background: var(--color-super-raised) !important;
    }
}

.button.small {
    --h: 32px;
}
