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

.screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #001428 0%, #000 70%);
    box-shadow: inset 0 0 120px #001f3f;
    padding: 1.5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 0.84rem;
}

.panel {
    border: 1px solid #004466;
    background: rgba(0, 20, 40, 0.55);
    border-radius: 6px;
    padding: 1rem;
    box-shadow: 0 0 18px rgba(0, 180, 255, 0.18);
    position: relative;
    overflow: hidden;

    /*
    overflow-y: scroll;
    scrollbar-width: none;
    */
}

.panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 6px;
}

.title-bar {
    display: flex;
    height: 2rem;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
    border-bottom: 1px solid #004466;
    padding-bottom: 0.4rem;
}

.title {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px #00aaff;

    cursor: default;
}

.title-center {
    width: 100%;
    text-align: center;

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

    cursor: default;
}

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

.chat {
    display: flex;
    flex-direction: column;
    height: 37.84dvh;
    margin-top: 5px;
}

.chat div{
    font-size: 0.85rem;
    color: #00aaff;
    
    font-family: 'Orbitron', sans-serif;
    word-break: normal;
    margin-bottom: 9px;

    /*
    text-shadow: 0 0 5px #00aaff;
    */
}

.grid-data {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.15rem;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.4;

    /*
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    */
}

.grid-data div{
    font-size: 0.85rem;
    color: #00aaff;
    
    font-family: 'Orbitron', sans-serif;
    word-break: break-all;

    /*
    text-shadow: 0 0 5px #00aaff;
    */
}

.graph {
    height: 140px;
    background: rgba(0,0,0,0.4);
    border: 1px solid #004488;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    margin: 0.8rem 0;
}

.graph::after {
    content: "WAVEFORM SIMULATION";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #004466;
    font-size: 1.4rem;
    font-weight: 900;
    opacity: 0.25;
    pointer-events: none;
}

.holo-city {
    height: 320px;
    background: linear-gradient(to bottom, #001122, #000814);
    border: 1px solid #003366;
    border-radius: 6px;
    position: relative;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #00aaff33;
    text-shadow: 0 0 40px #00aaff;
    font-family: 'Orbitron', sans-serif;
}



.token-scan {
    text-align: center;
}

.small-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.15rem;
    font-size: 0.85rem;
    font-family: 'Roboto Mono', monospace;

    overflow-y: scroll;
    scrollbar-width: none;

    /*
    grid-template-columns: repeat(3, 1fr);
    */
}

.console {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-size: 0.85rem;
    font-family: 'Roboto Mono', monospace;

    height: calc(100% - 2.4rem);

    overflow-y: scroll;
    scrollbar-width: none;

    /*
    grid-template-columns: repeat(3, 1fr);
    */
}

.right-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Zwei-Spalten-Layout für die beiden Screens nebeneinander (optional) */
.container {
    display: flex;
    height: 100%;
}

.half {
    width: 50%;
    height: 100%;
}

/* Custom Body + Border */
.outerBody {
    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%
    );
    padding: 3px;
    height: calc(100dvh - 22px);
    background: linear-gradient(135deg, rgb(12, 71, 102), rgb(22, 105, 150), rgb(12, 71, 102), rgb(22, 105, 150), rgb(22, 105, 150));
}

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

.innerBody {
    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;
    height: 100%;
    overflow: hidden !important;
    display: flex;
}


.chatInput {
    color: #00aaff;
    border: 1px solid #00aaff60;
    font-family: 'Orbitron', sans-serif;

    width: 98%;
    background: transparent;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translate(-50%, 0);
}

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

.menuButton {
    clip-path: polygon(0% 0%, 90% 0%, 100% 20%, 100% 100%, 10% 100%, 0% 80%);

    width: 98%;
    font-size: 1rem;
    text-align: center;
    font-family: 'Orbitron', sans-serif;

    padding: 0.84rem 0;
    margin-top: 0.5rem;

    border-radius: 4px;
    border: 1px solid #00aaff60;
    color: #00aaff;

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

    cursor: pointer;
}

.menuButton:hover {
    background: #00aaff;
    color: #001d2c;
}


.subroutineDisplay {
    overflow-y: scroll;
    height: calc(100% - 2rem);
    scrollbar-width: none;

    font-family: 'Roboto Mono';
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;

    text-align: center;

    display: flex;
    flex-direction: column;
}

.subroutineInput {
    color: #00aaff;
    border-radius: 4px;
    border: 1px solid #00aaff60;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    background: transparent;
    width: 75%;
    padding: 0.84rem;

    outline: none;
}

.subroutineInput:hover {
    outline: none;
}


.subroutineButtons {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.subroutineButton {
    clip-path: polygon(0% 0%, 90% 0%, 100% 20%, 100% 100%, 10% 100%, 0% 80%);

    width: 50%;
    font-size: 1rem;
    font-family: 'Orbitron', sans-serif;

    padding: 0.84rem 0;

    border-radius: 4px;
    border: 1px solid #00aaff60;
    color: #00aaff;

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

    cursor: pointer;

    flex: 1;

    margin-left: 25%;
}

.subroutineButton:hover {
    background: #00aaff;
    color: #001d2c;
}

.subroutineLine {
    flex: 1;
    margin-top: 0.8rem;
}

input[type="number"] {
    appearance: textfield;
}

.input {
    color: #00aaff;
    border: 1px solid #00aaff60;
    font-family: 'Orbitron', sans-serif;

    width: calc(98% - 9px);
    height: 2.1rem;
    background: transparent;

    margin-top: 1rem;

    padding: 9px;
    border-radius: 3px;
}

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

.address {
    margin-top: 5px;
    width: 100%;
    text-align: center;
    cursor: crosshair;
    border-radius: 4px;
}

.addressActive {
    background-color: #00aaff;
    color: #003366;
}

.addressHover {
    background-color: #00aaff18;
    color: #00eaff;
}



.property {
    margin-top: 5px;
    width: 100%;
    cursor: crosshair;
    border-radius: 4px;
}

.propertyActive {
    background-color: #00aaff;
    color: #003366;
}

.propertyHover {
    background-color: #00aaff18;
    color: #00eaff;
}

.tabs {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.tab {
    background: #00aaff60;
    font-size: 0.84rem;
    padding: 2px;
    flex: 1;

    margin-left: -4.8%;


    text-align: center;

    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);

    cursor: pointer;
}

.tab:hover {
    background: #00aaff;
    color: #003366;
}

.tabLeft {
    background: #00aaff60;
    font-size: 0.84rem;
    padding: 2px;
    padding-left: 0;
    flex: 1;
    border-radius: 4px 0px 0px 4px;

    text-align: center;

    clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
    cursor: pointer;
}

.tabLeft:hover {
    background: #00aaff;
    color: #003366;
}

.tabRight {
    background: #00aaff60;
    font-size: 0.84rem;
    padding: 2px;
    padding-right: 0;
    flex: 1;
    border-radius: 0px 4px 4px 0px;
    margin-left: -4.8%;


    text-align: center;

    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    cursor: pointer;
}

.tabRight:hover {
    background: #00aaff;
    color: #003366;
}

.setup {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;

    backdrop-filter: blur(8px);
}

.chatTab {
    background: #00aaff60;
    font-size: 0.84rem;
    padding: 2px;
    flex: 1;

    margin-left: -3%;


    text-align: center;

    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);

    cursor: pointer;
}

.chatTab:hover {
    background: #00aaff;
    color: #003366;
}

.chatTabLeft {
    background: #00aaff60;
    font-size: 0.84rem;
    padding: 2px;
    padding-left: 0;
    flex: 1;
    border-radius: 4px 0px 0px 4px;

    text-align: center;

    clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
    cursor: pointer;
}

.chatTabLeft:hover {
    background: #00aaff;
    color: #003366;
}

.chatTabRight {
    background: #00aaff60;
    font-size: 0.84rem;
    padding: 2px;
    padding-right: 0;
    flex: 1;
    border-radius: 0px 4px 4px 0px;
    margin-left: -3%;


    text-align: center;

    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    cursor: pointer;
}

.chatTabRight:hover {
    background: #00aaff;
    color: #003366;
}

.tabActive {
    background: #00aaff;
    color: #003366;
}

.txStatus {
    border: 1px solid #00aaff60;
    border-radius: 4px;
    margin-bottom: 4px;
    display: flex;
    flex-direction: row;

    max-width: 100%;
}