@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Syne:wght@500;700&display=swap');

/* ── Reset & base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html , body {
    font-size: 16px;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'DM Mono', monospace;
    background-color: #1c55e6;
    color: #111111;
    margin: 0;
}

/* ── App shell layout ── */
.app-shell {
    display: flex;
    flex-direction: row;
    height: 100vh;
    width: 100%;
}

.app-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    height: 100%;
    overflow: hidden;
}

.app-content {
    flex: 1;
    padding: 40px;
    min-width: 0;
    overflow-y: auto;
}