body {
    height: 100dvh;
    background: #000;
    color: #00eaff;
    font-family: 'Orbitron', sans-serif;
    overflow: hidden;
    margin: 0;
}

input {
    color: #00aaff;
    border: 1px solid #00aaff60;
    font-family: 'Orbitron', sans-serif;
    background: transparent;
    padding: 4px;
}

input:focus {
    outline: none;
    box-shadow: 0 0 0 1px rgba(66, 153, 225, 0.4);
}

input[type='number'] {
    appearance:textfield;
    -moz-appearance:textfield;
}

.outerBody {
    height: 100%;
    position: relative;
    clip-path: polygon(
        /* oben */
            2.5% 2%,
            15% 2%,
            17% 0%,
            85% 0%,
            87% 2%,
            97.5% 2%,
        /* rechts */
            99%  4.5%,
            99%  10%,
            100% 12%,
            100% 88%,
            99%  90%,
            99%  96%,
        /* unten */
            97.5% 98%,
            75% 98%,
            73% 100%,
            27% 100%,
            25% 98%,
            2.5%  98%,
        /* links */
            1% 96%,
            1% 90%,
            0% 88%,
            0% 12%,
            1% 10%,
            1% 4.5%
    );
    background: linear-gradient(135deg, rgb(12, 71, 102), rgb(22, 105, 150), rgb(12, 71, 102), rgb(22, 105, 150), rgb(22, 105, 150));
    /*  background: linear-gradient(135deg, rgb(172, 95, 8), rgb(207, 145, 10), rgb(172, 95, 8), rgb(207, 145, 10), rgb(207, 145, 10)); */
}

.outerBodyBlur {
    height: 100%;
    backdrop-filter: blur(15px);
}

.innerBody {
    width: 100%;
    height: 100%;
    clip-path: polygon(
        /* oben */
            2.5% 2%,
            20% 2%,
            22% 0%,
            80% 0%,
            82% 2%,
            97.5% 2%,
        /* rechts */
            99%  4.5%,
            99%  35%,
            100% 37%,
            100% 63%,
            99%  65%,
            99%  96%,
        /* unten */
            97.5% 98%,
            60% 98%,
            58% 100%,
            42% 100%,
            40% 98%,
            2.5%  98%,
        /* links */
            1% 96%,
            1% 65%,
            0% 63%,
            0% 37%,
            1% 35%,
            1% 4.5%
    );
    background: #000000;
    display: flex;
    position: relative;
}



.screen {
    position: relative;
    background: radial-gradient(ellipse at center, #001428 0%, #000 70%);
    background: transparent;
    box-shadow: inset 0 0 1000px #001f3f;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
    margin-top: 0;
    padding: 1.05%;
}

.panelContainer {
    display: flex;
    flex-direction: row;
    gap: 4px;
    flex: 4.5;
}

.panel {
    padding: 8px;
    border: 1px solid #004466;
    background: rgba(0, 20, 40, 0.55);
    border-radius: 4px;
    box-shadow: 0 0 18px rgba(0, 180, 255, 0.18);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow-y: scroll;
    scrollbar-width: none;
}

.addresses {
    display: block;
    flex: 19;
    overflow-y: scroll;
    scrollbar-width: none;
    font-family: 'Roboto Mono'; 
    font-size:0.9rem; 
    opacity:0.9;
}

.console {
    padding: 0 0.25dvw;
    scrollbar-width: none;
}

.login {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.status {
    font-size: 0.85rem;
    color: #00ffcc;
    font-family: 'Roboto Mono', monospace;
    cursor: default;
    padding-right: 1%;
}

.logo {
    position: absolute;
    left: 50%;
    bottom: -0.25%;
    transform: translate(-50%, 0%);

    font-size: 1.25rem;
    font-weight: bolder;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 10px #00aaff;

    cursor: default;
}



.tracktx {
    position: absolute;
    right: 21%;
    top: 0%;

    font-size: 100%;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px #00aaff;

    cursor: default;
}