        :root {
            --main-bg: #2f3133;
            --required: rgb(255, 157, 178);
        }

        html, body {
            font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
            margin: 0;
            padding: 0;
            background-color: #202022;
            color: white;
            max-width: 100%;
            overflow-x: hidden;
            text-shadow: 3px 3px 8px rgb(0 0 0 / 50%);
        }

        body {
            display: flex;
            min-height: 100vh;
            flex-direction: column;
            justify-content: flex-start;
        }

        .minor { color: #dfe1f5a4; }
        .ask { 
            color: #ffd4a3;
            font-style: italic;
            font-size: 0.9em;
        }

        button {
            box-sizing: border-box;
            font-size: 14px;
            border-radius: 3px;
            padding: .4rem .6rem;
            background-color: #333d5300;
            border: 1px solid #787685;
            color: #e5e4f0;
            cursor: pointer;
            transition: box-shadow .3s, border .2s, transform .1s;
            box-shadow: 0 2px 4px #b9a2f01a;
        }

        button:hover {
            border: 1px solid #e0ddff;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 1px 13px 0px #cbcaf148;
        }

        button:active { transform: translateY(-1px); }

        button.primary {
            background-color: #424250;
            border: 1px solid #555272;
            color: #fff;
        }

        button.primary:hover { border: 1px solid #6c679c; }

        button.danger {
            background-color: #4a3030;
            border: 1px solid #725555;
            color: #ffcccc;
        }

        button.danger:hover { border: 1px solid #9c6c6c; }

        .container {
            display: flex;
            width: 100%;
            max-width: 100%;
            margin: 1rem auto;
            flex-wrap: wrap;
        }

        .container > * {
            flex: 1;
            padding: 1rem;
            background: var(--main-bg);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            display: block;
        }

        .main-box { flex: 2; }

        h2 {
            text-align: left;
            color: #e5e4f0;
            margin-top: 1.5rem;
        }

        h2:first-child { margin-top: 0; }

        h3 {
            color: #d4d3dd;
            margin-bottom: 0.5rem;
        }

        hr {
            border: 0;
            border-top: 2px solid #4f4f5a;
            margin: 1.5rem 0;
        }

        .option { margin-bottom: 10px; }

        .character-card {
            background: #25262a;
            border: 1px solid #3f4045;
            border-radius: 6px;
            padding: 1rem;
            margin-bottom: 1rem;
        }

        .character-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .character-title {
            font-size: 1.1rem;
            font-weight: bold;
            color: #e5e4f0;
        }

        .inherited-options {
            background: #1f2024;
            border: 1px solid #35363a;
            border-radius: 4px;
            padding: 0.8rem;
            margin: 1rem 0;
        }

        .price:before { content: '$'; }
        .price.approx:before { content: '≈$'; }
        .price {
            color: rgb(185, 247, 218);
            font-weight: 400;
            padding-left: 3px;
        }

        #receipt {
            box-shadow: 7px 6px 10px 0px rgba(0, 0, 0, 0.26);
            background-color: #ffffff;
            color: rgb(0, 0, 0);
            border: none;
            font-size: 14px;
            font-weight: bold;
            font-family: monospace;
            width: 100%;
            min-height: 250px;
            margin-top: 10px;
            padding: 10px;
            box-sizing: border-box;
        }

        .required:after {
            content: '*';
            font-weight: normal;
            color: var(--required);
            margin-left: 6px;
        }

        .tooltip {
            position: relative;
            display: inline;
        }

        .tooltip__item {
            min-width: 200px;
            position: absolute;
            padding: 10px;
            visibility: hidden;
            opacity: 0;
            background: #212127;
            border: 1px solid #454957;
            transition: all 0.25s cubic-bezier(0, 0, 0.2, 1);
            color: #ffffff;
            border-radius: 3px;
            font-weight: 300;
            box-shadow: 0px 10px 20px 0px #0b08119f;
            z-index: 4;
            pointer-events: none;
        }

        .tooltip__item:after {
            content: "";
            display: block;
            position: absolute;
            width: 0;
            height: 0;
            border-style: solid;
            top: 50%;
            left: -0.5em;
            transform: translate3d(0, -50%, 0);
            border-width: 0.5em 0.5em 0.5em 0;
            border-color: transparent #212127 transparent transparent;
            filter: drop-shadow(-1px 0px 0px #454957);
        }

        .init:hover ~ .tooltip__item {
            transform: translate3d(0, -50%, 0);
            visibility: visible;
            opacity: 1;
        }

        .tooltip .tooltip__item {
            top: 50%;
            left: 42px;
            transform: translate3d(15px, -50%, 0);
        }

        .info {
            margin-left: 10px;
            font-size: 13px;
            font-weight: 500;
            display: inline-block;
            background-color: rgb(53, 53, 56);
            border: 1px solid rgba(123, 121, 218, 0.247);
            color: #d4d3dd;
            border-radius: 100%;
            width: 18px;
            height: 18px;
            text-align: center;
            cursor: help;
        }

        .add-character-btn {
            margin-top: 1rem;
            width: 100%;
        }

        .prop-container {
            margin-top: 0.5rem;
            padding-left: 1.5rem;
        }

        input[type="text"] {
            background: #1a1b1e;
            border: 1px solid #555272;
            color: white;
            padding: 0.3rem 0.5rem;
            border-radius: 3px;
            width: 200px;
            margin-top: 0.5rem;
        }

        #propsCountLabel {
            font-size: 0.85em;
            margin-top: -5px;
            display: block;
        }
        
        /*
        .total {
            position: fixed;
            bottom: 0;
            right: 0;
            z-index: 10;
            background: var(--main-bg);
            padding: 1rem 1rem 0rem 1rem;
        }
        */
        
        @media (min-width: 540px) { .container { max-width: 100%; } }
        @media (min-width: 576px) { .container { max-width: 540px; } }
        @media (min-width: 768px) { .container { max-width: 720px; } }