@font-face {
    font-family: "Anta";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src:
        url("./fonts/Anta-Regular.woff2") format("woff2"),
        url("./fonts/Anta-Regular.ttf") format("truetype");
}

:root {
    --bg: #16181c;
    --bg-deep: #101318;
    --bg-core: #05070a;
    --panel: rgba(15, 18, 22, 0.2);
    --panel-strong: rgba(21, 26, 31, 0.36);
    --border: rgba(245, 246, 248, 0.08);
    --border-strong: rgba(127, 191, 127, 0.26);
    --text: #f5f6f8;
    --muted: rgba(188, 197, 209, 0.82);
    --accent: #4d8d5e;
    --accent-bright: #7fbf7f;
    --accent-punch: #ffbe55;
    --accent-soft: #f2d06b;
    --danger: #ff7e8a;
    --shadow: 0 32px 120px rgba(3, 7, 12, 0.5);
    --radius: 24px;
    --go-tilt-x: 0deg;
    --go-tilt-y: 0deg;
    --go-panel-shift-x: 0px;
    --go-panel-shift-y: 0px;
    --go-grid-shift-x: 0px;
    --go-grid-shift-y: 0px;
    --go-scroll-shift: 0px;
    --go-highlight-x: 50%;
    --go-highlight-y: 42%;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    min-height: 100%;
}

body.go-body {
    margin: 0;
    overflow: hidden;
    overscroll-behavior: none;
    background:
        radial-gradient(circle at 18% 16%, rgba(127, 191, 127, 0.18), transparent 28%),
        radial-gradient(circle at 84% 14%, rgba(255, 190, 85, 0.16), transparent 24%),
        radial-gradient(circle at 72% 86%, rgba(242, 208, 107, 0.08), transparent 22%),
        linear-gradient(180deg, #171b20 0%, var(--bg) 45%, var(--bg-core) 100%);
    color: var(--text);
    font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
}

.go-body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 18% 30%, rgba(255, 255, 255, 0.05), transparent 22%),
        radial-gradient(circle at 78% 76%, rgba(127, 191, 127, 0.08), transparent 24%);
    opacity: 0.85;
    pointer-events: none;
}

.go-body::after {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at center, transparent 0%, rgba(5, 7, 10, 0.22) 52%, rgba(5, 7, 10, 0.72) 100%);
    pointer-events: none;
}

.go-login-shell {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
}

.go-login-shell::before,
.go-login-shell::after {
    display: none;
}

.go-scene-canvas,
.go-scene-grid,
.go-scene-vignette {
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.go-scene-canvas {
    z-index: 0;
    width: 100%;
    height: 100%;
}

.go-scene-grid {
    inset: -12%;
    z-index: 1;
    opacity: 0.5;
    background-image:
        linear-gradient(rgba(159, 167, 178, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(159, 167, 178, 0.06) 1px, transparent 1px);
    background-size: 72px 72px;
    background-position: 0 0;
    filter: blur(0.2px);
    transform:
        perspective(1500px)
        rotateX(74deg)
        translate3d(var(--go-grid-shift-x), calc(32px + var(--go-grid-shift-y) - var(--go-scroll-shift)), 0)
        scale(1.76);
    transform-origin: center 78%;
    mask-image: radial-gradient(circle at 50% 68%, rgba(0, 0, 0, 0.96) 10%, rgba(0, 0, 0, 0.72) 40%, transparent 80%);
    animation: go-grid-drift 26s linear infinite;
}

.go-scene-vignette {
    z-index: 2;
    background:
        radial-gradient(circle at center, transparent 0%, rgba(5, 7, 10, 0.08) 36%, rgba(5, 7, 10, 0.62) 100%),
        linear-gradient(180deg, rgba(9, 12, 16, 0.12) 0%, rgba(5, 7, 10, 0.34) 100%);
}

.go-login-stage {
    position: relative;
    z-index: 3;
    display: grid;
    place-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: clamp(24px, 5vw, 60px);
}

.go-login-card {
    position: relative;
    width: min(100%, 42rem);
    border-radius: 28px;
    overflow: hidden;
    transform:
        perspective(1800px)
        translate3d(var(--go-panel-shift-x), var(--go-panel-shift-y), 0)
        rotateX(var(--go-tilt-y))
        rotateY(var(--go-tilt-x));
    transform-style: preserve-3d;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

.go-login-card::before {
    content: none;
}

.go-login-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background: rgba(14, 17, 23, 0.10);
    box-shadow:
        inset 0 0 0 1px rgba(245, 246, 248, 0.045),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px) saturate(115%);
    -webkit-backdrop-filter: blur(16px) saturate(115%);
}

.go-login-panel {
    position: relative;
    z-index: 1;
    padding: clamp(2rem, 5vw, 3.4rem);
    text-align: center;
}

.go-login-panel::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.025), transparent 30%);
    pointer-events: none;
}

.go-wordmark {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin: 0;
    overflow: hidden;
    font-family: "Anta", sans-serif;
    font-size: clamp(3.5rem, 12vw, 6.4rem);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0.03em;
    text-shadow: 0 0 28px rgba(127, 191, 127, 0.14), 0 0 12px rgba(245, 246, 248, 0.1);
}

.go-wordmark > span {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.go-wordmark > span::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    z-index: 2;
    color: transparent;
    background-image: linear-gradient(
        110deg,
        transparent 24%,
        rgba(255, 255, 255, 0.9) 46%,
        rgba(255, 190, 85, 0.72) 54%,
        transparent 76%
    );
    background-position: 180% 0;
    background-repeat: no-repeat;
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: go-wordmark-shine 4.8s ease-in-out infinite;
    pointer-events: none;
}

.go-wordmark-trace {
    color: rgba(245, 246, 248, 0.98);
}

.go-wordmark-y {
    color: var(--accent-punch);
    text-shadow: 0 0 24px rgba(255, 190, 85, 0.32);
}

.go-copy,
.sidebar-user span,
.conversation-meta,
.empty-state {
    color: var(--muted);
}

.go-copy {
    max-width: 32rem;
    margin: 1.2rem auto 1.9rem;
    font-size: clamp(1rem, 2.4vw, 1.08rem);
    line-height: 1.72;
}

.go-login-notice {
    max-width: 32rem;
    margin: -0.25rem auto 1.4rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 190, 85, 0.12);
    border: 1px solid rgba(255, 190, 85, 0.3);
    color: rgba(255, 239, 211, 0.96);
    line-height: 1.55;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.google-button,
.ghost-button,
.logout-button,
.send-button {
    border: 0;
    cursor: pointer;
    font: inherit;
    transition: transform 0.18s ease, opacity 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.google-button,
.send-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(77, 141, 94, 0.3), rgba(255, 190, 85, 0.22));
    color: var(--text);
    text-decoration: none;
    border: 1px solid rgba(127, 191, 127, 0.32);
    box-shadow: 0 18px 40px rgba(12, 16, 23, 0.28);
}

.google-button::before,
.send-button::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02));
    opacity: 0.92;
}

.google-button:hover,
.ghost-button:hover,
.logout-button:hover,
.send-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 46px rgba(12, 16, 23, 0.34);
}

.google-button:focus-visible,
.ghost-button:focus-visible,
.logout-button:focus-visible,
.send-button:focus-visible {
    outline: 2px solid rgba(127, 191, 127, 0.55);
    outline-offset: 3px;
}

.google-button span,
.send-button span {
    position: relative;
    z-index: 1;
}

.google-mark {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(245, 246, 248, 0.14);
    font-weight: 700;
    color: rgba(245, 246, 248, 0.96);
    box-shadow: inset 0 0 0 1px rgba(245, 246, 248, 0.08);
}

.go-sidebar,
.activity-panel,
.composer-shell,
.account-drawer,
.transcript-shell,
.panel-block,
.composer-box {
    backdrop-filter: blur(18px);
    background: var(--panel);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.brand-block h1,
.go-topbar h2 {
    margin: 0;
    font-family: "Anta", sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

@keyframes go-grid-drift {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 72px;
    }
}

@keyframes go-wordmark-shine {
    0% {
        opacity: 0;
        background-position: -140% 0;
    }

    12% {
        opacity: 0.88;
    }

    38% {
        opacity: 1;
        background-position: 140% 0;
    }

    50%,
    100% {
        opacity: 0;
        background-position: 140% 0;
    }
}

@media (max-width: 720px) {
    .go-scene-grid {
        transform:
            perspective(1300px)
            rotateX(76deg)
            translate3d(var(--go-grid-shift-x), calc(18px + var(--go-grid-shift-y) - var(--go-scroll-shift)), 0)
            scale(1.92);
        opacity: 0.42;
    }

    .go-scene-vignette {
        background:
            radial-gradient(circle at center, transparent 0%, rgba(5, 7, 10, 0.04) 36%, rgba(5, 7, 10, 0.38) 100%),
            linear-gradient(180deg, rgba(9, 12, 16, 0.06) 0%, rgba(5, 7, 10, 0.18) 100%);
    }

    .go-body::after {
        background:
            radial-gradient(circle at center, transparent 0%, rgba(5, 7, 10, 0.12) 52%, rgba(5, 7, 10, 0.48) 100%);
    }

    .go-login-card {
        border-radius: 24px;
    }

    .go-login-panel {
        padding: 1.7rem 1.35rem 1.8rem;
    }

    .go-copy {
        margin-bottom: 1.6rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .go-scene-grid,
    .go-wordmark > span::after,
    .google-button,
    .ghost-button,
    .logout-button,
    .send-button {
        animation: none !important;
        transition: none !important;
    }

    .go-login-card {
        transform: none;
    }
}

/* ============================================================
   IDX site-owner login ver3: AI presence
   ============================================================ */
body.go-body-idx {
    --idx-void: #05080b;
    --idx-void-2: #070d11;
    --idx-text: #eaf4ee;
    --idx-muted: #8aa093;
    --idx-green: #5ed18a;
    --idx-green-deep: #2f7a4e;
    --idx-cyan: #6fe9d2;
    --idx-amber: #ffce6b;
    overflow: hidden;
    overscroll-behavior: none;
    color: var(--idx-text);
    background:
        radial-gradient(circle at 50% 42%, #0a141a 0%, var(--idx-void-2) 45%, var(--idx-void) 100%);
}

body.go-body-idx::before {
    content: none;
}

body.go-body-idx::after {
    background:
        radial-gradient(circle at 50% 44%, transparent 40%, rgba(3, 6, 9, 0.7) 100%);
}

.go-body-idx .go-scene-vignette {
    background:
        radial-gradient(circle at 50% 44%, transparent 40%, rgba(3, 6, 9, 0.7) 100%);
}

.go-body-idx .go-login-stage {
    text-align: center;
    padding: clamp(24px, 6vw, 64px);
}

.go-body-idx .go-login-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(18px, 3vw, 26px);
    width: min(100%, 30rem);
    overflow: visible;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.go-body-idx .go-login-card::after {
    content: none;
}

.go-body-idx .go-idx-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    font-family: "IBM Plex Mono", "SFMono-Regular", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--idx-muted);
}

.go-body-idx .go-idx-status-orb {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--idx-cyan);
    box-shadow: 0 0 12px var(--idx-cyan);
    animation: go-idx-breathe 3.4s ease-in-out infinite;
}

.go-body-idx .go-wordmark {
    margin: 0;
    font-size: 5.4rem;
    line-height: 0.95;
    letter-spacing: 0.05em;
    text-shadow: 0 0 40px rgba(94, 209, 138, 0.25);
}

.go-body-idx .go-wordmark-trace {
    color: var(--idx-text);
}

.go-body-idx .go-wordmark-y {
    color: var(--idx-amber);
    text-shadow: 0 0 30px rgba(255, 206, 107, 0.4);
}

.go-body-idx .go-idx-copy {
    max-width: 32rem;
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.6;
    color: var(--idx-muted);
}

.go-body-idx .go-idx-copy strong {
    color: var(--idx-text);
    font-weight: 500;
}

.go-body-idx .go-idx-host-name {
    font-family: "IBM Plex Mono", "SFMono-Regular", monospace;
    font-size: 0.92em;
    color: var(--idx-green);
}

.go-body-idx .go-login-notice {
    margin: 0;
    background: rgba(255, 206, 107, 0.11);
    border-color: rgba(255, 206, 107, 0.36);
    color: rgba(255, 239, 211, 0.96);
    box-shadow: none;
}

.go-body-idx .google-button {
    justify-content: center;
    margin-top: 0.4rem;
    padding: 15px 30px 15px 16px;
    gap: 13px;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--idx-text);
    background: rgba(94, 209, 138, 0.08);
    border: 1px solid rgba(94, 209, 138, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 0 0 0 rgba(94, 209, 138, 0.3), 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.2s ease, border-color 0.2s ease;
}

.go-body-idx .google-button::before {
    content: none;
}

.go-body-idx .google-button:hover {
    transform: translateY(-2px);
    background: rgba(94, 209, 138, 0.14);
    border-color: rgba(94, 209, 138, 0.7);
    box-shadow: 0 0 36px rgba(94, 209, 138, 0.28), 0 14px 46px rgba(0, 0, 0, 0.55);
}

.go-body-idx .google-button:focus-visible {
    outline-color: var(--idx-cyan);
}

.go-body-idx .google-mark {
    width: 30px;
    height: 30px;
    background: var(--idx-text);
    color: #06140c;
    box-shadow: none;
}

.go-body-idx .go-idx-footnote {
    margin: 0.3rem 0 0;
    font-family: "IBM Plex Mono", "SFMono-Regular", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: rgba(138, 160, 147, 0.7);
}

@keyframes go-idx-breathe {
    0%,
    100% {
        opacity: 0.45;
        transform: scale(0.85);
    }
    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

@media (max-width: 720px) {
    .go-body-idx .go-login-card {
        width: min(100%, 26rem);
        gap: 22px;
    }

    .go-body-idx .go-idx-status {
        font-size: 0.7rem;
    }

    .go-body-idx .go-idx-copy {
        font-size: 1.5rem;
        line-height: 1.52;
    }

    .go-body-idx .google-button {
        width: min(100%, 23.5rem);
        min-height: 64px;
        font-size: 1.2rem;
    }
}

@media (max-width: 420px) {
    .go-body-idx .go-wordmark {
        font-size: 4rem;
    }

    .go-body-idx .go-idx-copy {
        font-size: 1.32rem;
    }
}

.go-app {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr) 320px;
    gap: 18px;
    min-height: 100vh;
    padding: 18px;
}

.go-sidebar,
.account-drawer {
    border-radius: var(--radius);
    padding: 20px;
}

.brand-block {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(159, 167, 178, 0.12);
}

.brand-block h1 {
    font-size: 2.2rem;
}

.sidebar-user {
    margin: 18px 0 0;
    font-size: 0.96rem;
}

.sidebar-user span {
    display: block;
    margin-top: 4px;
    font-size: 0.84rem;
}

.conversation-toolbar {
    display: flex;
    gap: 10px;
    margin: 18px 0;
}

.ghost-button,
.logout-button,
.upload-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(245, 246, 248, 0.05);
    color: var(--text);
    border: 1px solid rgba(159, 167, 178, 0.14);
}

.ghost-button.small {
    padding: 8px 12px;
    font-size: 0.84rem;
}

.logout-button {
    width: 100%;
    margin-top: 18px;
}

.conversation-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: calc(100vh - 250px);
    overflow: auto;
}

.conversation-item {
    width: 100%;
    text-align: left;
    border: 1px solid transparent;
    border-radius: 18px;
    padding: 14px;
    background: rgba(245, 246, 248, 0.04);
    color: var(--text);
    cursor: pointer;
}

.conversation-item.active {
    border-color: var(--border-strong);
    background: rgba(77, 141, 94, 0.16);
}

.conversation-item h3 {
    margin: 0 0 6px;
    font-size: 0.98rem;
}

.conversation-meta {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.5;
}

.go-main {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.go-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 26px;
    border-radius: var(--radius);
    background: var(--panel-strong);
    border: 1px solid rgba(127, 191, 127, 0.18);
    box-shadow: var(--shadow);
}

.go-topbar h2 {
    font-size: 1.8rem;
}

.status-strip {
    display: flex;
    gap: 10px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(77, 141, 94, 0.14);
    color: var(--accent);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.status-pill.alt {
    background: rgba(255, 190, 85, 0.14);
    color: var(--accent-b);
}

.transcript-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius);
}

.transcript {
    min-height: 50vh;
    max-height: calc(100vh - 360px);
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-right: 8px;
}

.message-card {
    border-radius: 22px;
    padding: 18px;
    background: rgba(245, 246, 248, 0.04);
    border: 1px solid rgba(159, 167, 178, 0.14);
}

.message-card.user {
    background: rgba(255, 190, 85, 0.12);
}

.message-card.assistant {
    background: rgba(77, 141, 94, 0.14);
}

.message-role {
    margin: 0 0 10px;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.message-body {
    margin: 0;
    white-space: pre-wrap;
    line-height: 1.7;
}

.activity-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.panel-block {
    border-radius: 22px;
    padding: 14px;
}

.panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.panel-head h3 {
    margin: 0;
    font-size: 0.98rem;
}

.panel-scroll,
.account-output {
    max-height: 18rem;
    overflow: auto;
    white-space: pre-wrap;
    line-height: 1.6;
}

.composer-shell {
    border-radius: var(--radius);
    padding: 16px;
}

.composer-controls {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.composer-controls label,
.toggle-label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 0.84rem;
}

.composer-controls select,
.composer-box textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(159, 167, 178, 0.16);
    background: rgba(22, 24, 28, 0.56);
    color: var(--text);
    font: inherit;
}

.composer-controls select {
    min-width: 180px;
    padding: 10px 12px;
}

.composer-box {
    border-radius: 20px;
    padding: 14px;
}

.composer-box textarea {
    min-height: 140px;
    padding: 14px;
    resize: vertical;
}

.composer-footer {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 12px;
}

.upload-chip input {
    display: none;
}

.upload-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
}

.upload-item {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(245, 246, 248, 0.06);
    color: var(--text);
    font-size: 0.82rem;
}

.pending-card {
    border-radius: 18px;
    padding: 12px;
    background: rgba(245, 246, 248, 0.04);
    border: 1px solid rgba(159, 167, 178, 0.14);
    margin-bottom: 12px;
}

.pending-card label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
}

.pending-card input,
.pending-card select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(159, 167, 178, 0.16);
    background: rgba(22, 24, 28, 0.48);
    color: var(--text);
    margin-top: 6px;
}

.pending-card button {
    margin-top: 10px;
    width: 100%;
}

.account-drawer {
    position: relative;
}

.account-output {
    margin: 0;
    font-size: 0.82rem;
}

@media (max-width: 1280px) {
    .go-app {
        grid-template-columns: 280px minmax(0, 1fr);
    }

    .account-drawer {
        grid-column: 1 / -1;
    }
}

@media (max-width: 980px) {
    .go-app {
        grid-template-columns: 1fr;
    }

    .transcript-shell {
        grid-template-columns: 1fr;
    }

    .conversation-list {
        max-height: none;
    }
}
