    /* === CALCULATOR PAGE STYLES === */

    #calcForm {
        margin: 1.5em auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
        gap: 1em 1.5em;
    }

    #calcForm label {
        display: flex;
        flex-direction: column;
        font-weight: bold;
        color: var(--olive);
    }

    #calcForm input,
    #calcForm select {
        margin-top: 0.3em;
        padding: 0.4em;
        background: var(--bg);
        color: var(--fg);
        border: 1px solid var(--light-gray);
        border-radius: 4px;
        font-family: 'Roboto Mono', monospace;
    }

    #calcForm button {
        grid-column: 1 / -1;
        box-sizing: border-box;
        width: 100%;
        padding: 4px;
        background: var(--olive);
        border: 2px black solid;
        color: black;
        text-decoration: none;
        white-space: nowrap;
        box-shadow: 3px 3px 0px black;
        transition: all 0.15s ease-in-out;
        cursor: pointer;
    }

    #calcForm button:hover {
        text-decoration: none;
        background: #94ac7f;
        box-shadow: 1px 1px 0px black;
    }

    #calcForm button:active {
        background: white;
    }

    #results {
        overflow-x: auto;
    }

    #results table {
        width: 100%;
        border-collapse: collapse;
        font-family: 'Roboto Mono', monospace;
        font-size: small;
    }

    #results th,
    #results td {
        border: 1px solid var(--gray);
        padding: 0.3em 0.5em;
        text-align: center;
    }

    #results th {
        background: var(--alt-bg-darker);
        color: var(--olive);
    }

    #results tr:nth-child(even) {
        background: rgba(255, 255, 255, 0.03);
    }

    label {
        display: block;
        margin: 8px 0;
    }

    @media (max-width: 700px) {

        #results th,
        #results td {
            font-size: small;
        }
    }