main {
    max-width: 1200px;
    margin-inline: auto;


    --background: #121824;
    --border-color: #212c3f;
    --highlight: #4fa5ff;
    --text-primary: #f0f6fc;
    --text-muted: #8b949e;
    --text-url-origin: #ff7b72;
    --text-url-base-path: #a5d6ff;
    --text-url-src-path: #7ee787;
    --text-url-search: #fa85c0;
    --text-url-hash: #f7cc67;
}

.table {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;

    font-size: 12pt;

    .row {
        background: var(--background);
        border: 1px solid var(--border-color);
        border-radius: 8px;

        overflow-x: auto;
        scrollbar-width: thin;

        .row-content {
            width: fit-content;
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 8px 12px;
        }

        .desc {
            color: var(--text-muted);
            font-style: italic;
        }

        .sources {
            flex: 1;
            display: flex;
            gap: 10px;

            @media (width <= 700px) {
                flex-direction: column;
            }

            .src,
            .base {
                color: #8b949e;
                white-space: nowrap;

                span {
                    color: #58a6ff;
                    font-size: 12pt;
                    font-weight: 400;
                    letter-spacing: 0;
                }
            }
        }
    }
}

.playground {

    padding: 20px;
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 12px;


    h2 {
        font-size: 16pt;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #484f58;

        margin-block: 20px 10px;

        &:first-child {
            margin-block: 0 10px;
        }
    }

    .inputs {
        display: flex;
        gap: 10px;

        @media (width <= 700px) {
            flex-direction: column;
        }

        label {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
            font-size: 14pt;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #8b949e;

            input {
                background: #0d1117;
                border: 1px solid #30363d;
                border-radius: 8px;
                padding: 8px 12px;

                color: #e6edf3;
                outline: none;
                transition: border-color .2s;

                &::placeholder {
                    color: #484f58;
                }

                &:focus {
                    border-color: #58a6ff;
                }
            }
        }
    }

    .result {
        background: #0d1117;
        border: 1px solid #30363d;
        border-radius: 8px;

        overflow-x: auto;
        scrollbar-width: thin;

        .result-content {
            min-height: 1lh;
            width: fit-content;
            padding: 8px 12px;
        }
    }

}