* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --background: #050505;
    --panel: #101010;
    --panel-light: #151515;
    --green: #7cfc00;
    --bright-green: #00ff66;
    --soft-green: #99ff99;
    --border: rgba(0, 255, 102, 0.55);
    --muted: #8a8a8a;
    --white: #f3f3f3;
    --danger: #ff6961;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top, #111 0, #050505 45%),
        var(--background);

    color: var(--green);
    font-family: Consolas, Monaco, "Courier New", monospace;
    line-height: 1.6;
    min-height: 100vh;
}

button,
textarea {
    font: inherit;
}

.container {
    width: min(95%, 1500px);
    margin: 0 auto;
    padding: 30px 0 50px;
}

.site-header {
    padding: 20px 10px 35px;
    text-align: center;
}

.eyebrow {
    color: var(--muted);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

h1 {
    color: var(--green);
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1;
    text-shadow:
        0 0 10px var(--bright-green),
        0 0 24px rgba(0, 255, 102, 0.7);
}

h2 {
    color: var(--soft-green);
    margin-top: 12px;
}

h3 {
    border-bottom: 1px solid var(--border);
    color: var(--green);
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.header-message {
    color: var(--white);
    margin: 18px auto 0;
    max-width: 700px;
}

.top-grid,
.dashboard-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.panel {
    background: linear-gradient(145deg, var(--panel-light), var(--panel));
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 0 16px rgba(0, 255, 102, 0.13);
    padding: 24px;
}

.compact-panel {
    min-height: 190px;
}

.compact-panel p {
    margin: 7px 0;
}

.status-dot {
    background: var(--bright-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--bright-green);
    display: inline-block;
    height: 8px;
    margin-right: 8px;
    width: 8px;
}

.clock {
    color: var(--bright-green);
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 700;
}

.mood {
    color: var(--bright-green);
    font-size: 1.8rem;
    font-weight: 700;
}

#mood-detail {
    color: var(--muted);
}

.hero-section {
    margin: 34px 0;
}

.hero {
    border: 2px solid var(--bright-green);
    border-radius: 16px;
    box-shadow:
        0 0 20px var(--bright-green),
        0 0 60px rgba(0, 255, 102, 0.14);
    display: block;
    max-height: 720px;
    object-fit: cover;
    width: 100%;
}

.quote {
    background: rgba(16, 16, 16, 0.96);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.2);
    color: var(--white);
    font-size: 1.2rem;
    margin: -35px auto 0;
    max-width: 900px;
    padding: 20px;
    position: relative;
    text-align: center;
    width: calc(100% - 40px);
}

.cursor::after {
    animation: blink 1s infinite;
    content: "_";
}

.chat-panel {
    margin: 40px 0;
    padding: 0;
    overflow: hidden;
}

.chat-header {
    align-items: center;
    background: rgba(0, 255, 102, 0.04);
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 20px;
    justify-content: space-between;
    padding: 24px;
}

.chat-header h3 {
    border: 0;
    font-size: 1.5rem;
    margin: 0;
    padding: 0;
}

.chat-subtitle {
    color: var(--muted);
    margin-top: 8px;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: min(60vh, 650px);
    min-height: 400px;
    overflow-y: auto;
    padding: 25px;
}

.chat-empty-state {
    color: var(--muted);
    margin: auto;
    max-width: 600px;
    text-align: center;
}

.message-row {
    display: flex;
}

.message-row.user {
    justify-content: flex-end;
}

.message-row.assistant {
    justify-content: flex-start;
}

.message-bubble {
    border-radius: 12px;
    max-width: min(82%, 850px);
    padding: 14px 17px;
    white-space: pre-wrap;
    word-break: break-word;
}

.message-row.user .message-bubble {
    background: var(--bright-green);
    color: #050505;
}

.message-row.assistant .message-bubble {
    background: #171717;
    border: 1px solid var(--border);
    color: var(--white);
}

.message-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
    opacity: 0.75;
    text-transform: uppercase;
}

.typing-indicator {
    border-top: 1px solid #222;
    color: var(--soft-green);
    padding: 12px 25px;
}

.chat-form {
    align-items: stretch;
    border-top: 1px solid var(--border);
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr auto;
    padding: 20px;
}

.chat-form textarea {
    background: #090909;
    border: 1px solid var(--border);
    border-radius: 9px;
    color: var(--white);
    min-height: 62px;
    outline: none;
    padding: 14px;
    resize: vertical;
}

.chat-form textarea:focus {
    border-color: var(--bright-green);
    box-shadow: 0 0 8px rgba(0, 255, 102, 0.35);
}

button {
    background: #101010;
    border: 1px solid var(--bright-green);
    border-radius: 8px;
    color: var(--green);
    cursor: pointer;
    padding: 12px 20px;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        opacity 0.2s ease;
}

button:hover {
    background: var(--bright-green);
    color: #050505;
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.secondary-button {
    white-space: nowrap;
}

.chat-footer {
    border-top: 1px solid #222;
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.78rem;
    gap: 12px;
    justify-content: space-between;
    padding: 12px 20px;
}

.chat-footer code {
    color: var(--soft-green);
}

.dashboard-grid {
    margin-top: 30px;
}

.dashboard-grid .panel p {
    margin: 12px 0;
}

.success-text {
    color: var(--bright-green);
    font-weight: 700;
}

progress {
    accent-color: var(--bright-green);
    height: 16px;
    width: 100%;
}

hr {
    border: 0;
    border-top: 1px solid #282828;
    margin: 18px 0;
}

footer {
    color: #777;
    margin-top: 60px;
    text-align: center;
}

footer p {
    margin: 8px;
}

a {
    color: var(--green);
    text-decoration: none;
}

a:hover {
    color: var(--white);
}

.visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #007a32;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--bright-green);
}

@keyframes blink {
    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

@media (max-width: 700px) {
    .container {
        padding-top: 15px;
    }

    .chat-header {
        align-items: stretch;
        flex-direction: column;
    }

    .chat-form {
        grid-template-columns: 1fr;
    }

    .chat-messages {
        height: 55vh;
        min-height: 350px;
        padding: 16px;
    }

    .message-bubble {
        max-width: 92%;
    }

    .secondary-button {
        width: 100%;
    }
}


/* =========================================================
   Nibbler Mobile Chat Mode v1
   ========================================================= */

.chat-header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.exit-chat-button {
    display: none;
}

@media (max-width: 700px) {

    body.nibbler-mobile-chat-open {
        overflow: hidden;
    }

    body.nibbler-mobile-chat-open .chat-panel {
        position: fixed;
        inset: 0;
        z-index: 10000;

        width: 100%;
        height: 100vh;
        height: 100dvh;

        margin: 0;
        padding: 0;

        display: flex;
        flex-direction: column;

        border: 0;
        border-radius: 0;
        background: var(--black);
    }

    body.nibbler-mobile-chat-open .chat-header {
        flex: 0 0 auto;
        flex-direction: row;
        align-items: center;

        gap: 10px;
        padding: 12px 14px;
    }

    body.nibbler-mobile-chat-open .chat-header > div:first-child {
        flex: 1 1 auto;
        min-width: 0;
    }

    body.nibbler-mobile-chat-open .chat-header h3 {
        font-size: 1.05rem;
    }

    body.nibbler-mobile-chat-open .chat-header .eyebrow {
        font-size: .68rem;
    }

    body.nibbler-mobile-chat-open .chat-subtitle {
        margin-top: 4px;
        font-size: .72rem;
    }

    body.nibbler-mobile-chat-open .chat-header-actions {
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    body.nibbler-mobile-chat-open .chat-header-actions button {
        width: auto;
        margin: 0;
        padding: 7px 9px;
        font-size: .72rem;
        white-space: nowrap;
    }

    body.nibbler-mobile-chat-open .exit-chat-button {
        display: block;
    }

    body.nibbler-mobile-chat-open .chat-messages {
        flex: 1 1 auto;

        height: auto;
        min-height: 0;

        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;

        padding: 16px 12px;
    }

    body.nibbler-mobile-chat-open .message-bubble {
        max-width: 94%;
    }

    body.nibbler-mobile-chat-open .typing-indicator {
        flex: 0 0 auto;
        padding: 8px 12px;
        font-size: .78rem;
    }

    body.nibbler-mobile-chat-open .chat-form {
        flex: 0 0 auto;

        display: grid;
        grid-template-columns: 1fr auto;

        gap: 8px;
        padding: 10px 12px;

        background: #090909;
    }

    body.nibbler-mobile-chat-open .chat-form textarea {
        min-width: 0;
        min-height: 48px;
        max-height: 110px;
        resize: none;
    }

    body.nibbler-mobile-chat-open #send-button {
        min-width: 72px;
        min-height: 48px;
        padding: 0 14px;
    }

    body.nibbler-mobile-chat-open .chat-footer {
        flex: 0 0 auto;
        padding: 7px 12px 9px;
        font-size: .68rem;
    }

    body.nibbler-mobile-chat-open .chat-footer span:first-child {
        display: none;
    }
}

/* =========================================================
   Nibbler Mobile Chat Header Fix v1
   ========================================================= */

@media (max-width: 700px) {

    body.nibbler-mobile-chat-open .chat-panel {
        background: #050505;
    }

    body.nibbler-mobile-chat-open .chat-header {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;

        background: #080808;
        padding: 12px 14px;
    }

    body.nibbler-mobile-chat-open .chat-header > div:first-child {
        width: 100%;
        min-width: 0;
    }

    body.nibbler-mobile-chat-open .chat-header .eyebrow {
        margin: 0 0 4px;
        font-size: .65rem;
    }

    body.nibbler-mobile-chat-open .chat-header h3 {
        margin: 0;
        font-size: 1.05rem;
        line-height: 1.2;
    }

    body.nibbler-mobile-chat-open .chat-subtitle {
        margin: 5px 0 0;
        font-size: .72rem;
        line-height: 1.2;
    }

    body.nibbler-mobile-chat-open .chat-header-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 8px;
    }

    body.nibbler-mobile-chat-open .chat-header-actions button {
        width: 100%;
        min-height: 42px;
        margin: 0;
        padding: 8px 10px;
    }

    body.nibbler-mobile-chat-open .exit-chat-button {
        min-width: 72px;
    }

    body.nibbler-mobile-chat-open .chat-messages,
    body.nibbler-mobile-chat-open .typing-indicator,
    body.nibbler-mobile-chat-open .chat-form,
    body.nibbler-mobile-chat-open .chat-footer {
        background: #050505;
    }
}


/* =========================================================
   Nibbler Voice + Live Cam
   ========================================================= */

.nibbler-chat-identity {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.nibbler-chat-title {
    min-width: 0;
}

.nibbler-chat-avatar {
    position: relative;

    width: 46px;
    height: 46px;
    flex: 0 0 46px;

    display: grid;
    place-items: center;

    overflow: hidden;

    border: 1px solid rgba(214, 168, 82, .6);
    border-radius: 50%;

    background: #111;
    color: #d6a852;

    font-weight: 900;
}

.nibbler-avatar-letter {
    display: none;
    width: 100%;
    height: 100%;

    place-items: center;

    color: #d6a852;
    font-size: 1rem;
    font-weight: 900;
}

.nibbler-avatar-cam {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    border-radius: inherit;
}

.nibbler-chat-avatar.is-live {
    width: 120px;
    height: 120px;
    flex-basis: 120px;

    border-radius: 12px;
}

.nibbler-chat-avatar.is-live .nibbler-avatar-letter {
    display: none;
}

.nibbler-chat-avatar.is-live .nibbler-avatar-cam {
    display: block;
}

#nibbler-voice-toggle.voice-on {
    border-color: #d6a852;
    color: #d6a852;
}

@media (max-width: 700px) {

    .nibbler-chat-identity {
        width: 100%;
    }

    .nibbler-chat-avatar.is-live {
        width: 88px;
        height: 88px;
        flex-basis: 88px;
    }

    body.nibbler-mobile-chat-open
    .nibbler-chat-identity {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
}

/* =========================================================
   FIA Speech Input v1
   ========================================================= */

.chat-form {
    grid-template-columns: minmax(0, 1fr) auto auto;
}

#mic-button {
    min-width: 46px;
    min-height: 44px;
    padding: 0 12px;
    font: inherit;
    font-size: 1.15rem;
    cursor: pointer;
    border-radius: 8px;
}

#mic-button:disabled {
    cursor: wait;
    opacity: 0.65;
}

#mic-button.is-recording {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

/* =========================================================
   FIA Speech Input Mobile Fix v1
   ========================================================= */

@media (max-width: 700px) {

    body.nibbler-mobile-chat-open .chat-form {
        grid-template-columns:
            minmax(0, 1fr)
            48px
            auto;
    }

    body.nibbler-mobile-chat-open #mic-button {
        min-width: 48px;
        width: 48px;
        min-height: 48px;
        padding: 0;
    }
}

/* =========================================================
   FIA Voice Auto-Send v1
   ========================================================= */

.voice-autosend-control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 44px;
    padding: 0 8px;
    font-size: .78rem;
    white-space: nowrap;
    cursor: pointer;
}

.voice-autosend-control input {
    margin: 0;
}

@media (max-width: 700px) {
    body.nibbler-mobile-chat-open .chat-form {
        grid-template-columns:
            minmax(0, 1fr)
            auto
            48px
            auto;
    }

    body.nibbler-mobile-chat-open
    .voice-autosend-control {
        min-height: 48px;
        padding: 0 4px;
        font-size: .7rem;
    }
}

/* =========================================================
   Nibbler Mobile Compact Layout v1
   Compact header + compact composer
   ========================================================= */

@media (max-width: 700px) {

    /* -----------------------------------------------------
       HEADER
       ----------------------------------------------------- */

    body.nibbler-mobile-chat-open .chat-header {
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 7px;
        padding: 7px 10px;
        background: #080808;
    }

    body.nibbler-mobile-chat-open .nibbler-chat-identity {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 9px;
        width: 100%;
        min-width: 0;
    }

    /* Keep Nibbler's avatar compact */
    body.nibbler-mobile-chat-open .nibbler-chat-avatar,
    body.nibbler-mobile-chat-open .nibbler-chat-avatar.is-live {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
    }

    body.nibbler-mobile-chat-open .nibbler-chat-title {
        min-width: 0;
        flex: 1 1 auto;
    }

    body.nibbler-mobile-chat-open .chat-header .eyebrow {
        margin: 0 0 2px;
        font-size: .58rem;
        line-height: 1.1;
    }

    body.nibbler-mobile-chat-open .chat-header h3 {
        margin: 0;
        padding: 0;
        font-size: 1rem;
        line-height: 1.15;
    }

    body.nibbler-mobile-chat-open .chat-subtitle {
        margin: 2px 0 0;
        font-size: .65rem;
        line-height: 1.1;
    }

    /* Voice / New / Exit all on one row */
    body.nibbler-mobile-chat-open .chat-header-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1.25fr .7fr;
        gap: 6px;
    }

    body.nibbler-mobile-chat-open .chat-header-actions button {
        width: 100%;
        min-width: 0;
        min-height: 38px;
        margin: 0;
        padding: 5px 6px;
        font-size: .68rem;
        line-height: 1;
        white-space: nowrap;
    }

    body.nibbler-mobile-chat-open .exit-chat-button {
        display: block;
        min-width: 0;
    }


    /* -----------------------------------------------------
       MESSAGE AREA
       ----------------------------------------------------- */

    body.nibbler-mobile-chat-open .chat-messages {
        flex: 1 1 auto;
        height: auto;
        min-height: 0;
        padding: 10px 10px;
        gap: 12px;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    body.nibbler-mobile-chat-open .message-bubble {
        max-width: 94%;
    }

    body.nibbler-mobile-chat-open .typing-indicator {
        padding: 5px 10px;
        font-size: .72rem;
    }


    /* -----------------------------------------------------
       COMPOSER
       Input | Auto | Mic | Send
       ----------------------------------------------------- */

    body.nibbler-mobile-chat-open .chat-form {
        flex: 0 0 auto;
        display: grid;
        grid-template-columns:
            minmax(0, 1fr)
            auto
            42px
            auto;
        align-items: stretch;
        gap: 5px;
        padding: 7px 8px;
        background: #090909;
    }

    body.nibbler-mobile-chat-open .chat-form textarea {
        min-width: 0;
        width: 100%;
        min-height: 44px;
        height: 44px;
        max-height: 88px;
        padding: 9px 10px;
        font-size: .78rem;
        line-height: 1.3;
        resize: none;
    }

    body.nibbler-mobile-chat-open .voice-autosend-control {
        min-height: 44px;
        padding: 0 3px;
        gap: 3px;
        font-size: .62rem;
    }

    body.nibbler-mobile-chat-open .voice-autosend-control input {
        width: 15px;
        height: 15px;
        margin: 0;
    }

    body.nibbler-mobile-chat-open #mic-button {
        width: 42px;
        min-width: 42px;
        min-height: 44px;
        padding: 0;
        font-size: 1rem;
    }

    body.nibbler-mobile-chat-open #send-button {
        min-width: 58px;
        min-height: 44px;
        padding: 0 9px;
        font-size: .72rem;
    }


    /* -----------------------------------------------------
       FOOTER
       Keep connection status but make it tiny
       ----------------------------------------------------- */

    body.nibbler-mobile-chat-open .chat-footer {
        flex: 0 0 auto;
        min-height: 0;
        padding: 3px 9px 4px;
        font-size: .58rem;
        line-height: 1.1;
    }

    body.nibbler-mobile-chat-open .chat-footer span:first-child {
        display: none;
    }
}



/* =========================================================
   Kiwi Unauthorized Maintenance Event v1
   FAKE failure only — no backend services are affected.
   ========================================================= */

.kiwi-intrusion-row {
    margin: 12px 0;
}

.kiwi-intrusion-row .message-bubble {
    border: 1px solid #ff9800;
    box-shadow: 0 0 14px rgba(255, 152, 0, .18);
}

.kiwi-intrusion-row .message-label {
    color: #ffb74d;
}

.kiwi-system-row {
    margin: 8px 0;
    text-align: center;
    font-size: .78rem;
    opacity: .8;
}

.kiwi-crash-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #020202;
    color: #e8e8e8;
    font-family: "Courier New", Courier, monospace;
    opacity: 0;
    pointer-events: none;
    transition: opacity .12s linear;
}

.kiwi-crash-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.kiwi-crash-overlay.glitch {
    animation: kiwi-screen-failure .16s steps(2, end) 5;
}

.kiwi-recovery-terminal {
    width: min(680px, 100%);
}

.kiwi-recovery-logo {
    margin-bottom: 18px;
    font-size: clamp(1.15rem, 5vw, 1.8rem);
    font-weight: 800;
    letter-spacing: .08em;
    color: #ff9800;
}

.kiwi-recovery-line {
    min-height: 1.4em;
    margin: 7px 0;
    font-size: clamp(.78rem, 3.5vw, 1rem);
    line-height: 1.45;
}

.kiwi-recovery-warning {
    color: #ffb74d;
}

.kiwi-recovery-good {
    color: #9be59b;
}

.kiwi-crash-flash {
    position: fixed;
    inset: 0;
    z-index: 999998;
    background: white;
    opacity: 0;
    pointer-events: none;
}

.kiwi-crash-flash.active {
    animation: kiwi-flash .35s linear;
}

body.kiwi-fake-crashing .chat-panel {
    animation: kiwi-panel-glitch .11s steps(2, end) 5;
}

@keyframes kiwi-panel-glitch {
    0%   { transform: translate(0, 0); filter: none; }
    20%  { transform: translate(-5px, 1px); filter: contrast(1.8); }
    40%  { transform: translate(6px, -2px); filter: invert(.08); }
    60%  { transform: translate(-3px, 2px); filter: contrast(2.2); }
    80%  { transform: translate(4px, 0); filter: invert(.15); }
    100% { transform: translate(0, 0); filter: none; }
}

@keyframes kiwi-screen-failure {
    0%   { transform: translateX(0); }
    25%  { transform: translateX(-4px); }
    50%  { transform: translateX(5px); }
    75%  { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}

@keyframes kiwi-flash {
    0%   { opacity: 0; }
    15%  { opacity: .8; }
    35%  { opacity: 0; }
    55%  { opacity: .35; }
    100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    body.kiwi-fake-crashing .chat-panel,
    .kiwi-crash-overlay.glitch,
    .kiwi-crash-flash.active {
        animation: none !important;
    }
}

/* =========================================================
   Nibbler Android App Full-Screen Chat
   ========================================================= */

body.nibbler-android-app.nibbler-mobile-chat-open {
    overflow: hidden;
}

body.nibbler-android-app.nibbler-mobile-chat-open .chat-panel {
    position: fixed;
    inset: 0;
    z-index: 10000;

    width: 100%;
    height: 100vh;
    height: 100dvh;

    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;

    border: 0;
    border-radius: 0;
    background: #050505;
}

body.nibbler-android-app.nibbler-mobile-chat-open .chat-header {
    flex: 0 0 auto;
}

body.nibbler-android-app.nibbler-mobile-chat-open .exit-chat-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body.nibbler-android-app.nibbler-mobile-chat-open .chat-messages {
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
    max-height: none;

    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;

    background: #050505;
}

body.nibbler-android-app.nibbler-mobile-chat-open .typing-indicator,
body.nibbler-android-app.nibbler-mobile-chat-open .chat-form,
body.nibbler-android-app.nibbler-mobile-chat-open .chat-footer {
    flex: 0 0 auto;
    background: #050505;
}

