.full-page {
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: var(--background); /*linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 100%);*/
}


.chat-main-area {
    flex: 1;
    overflow-y: auto;
    padding-left: 5vw;
    padding-right: 5vw;
    padding-top: 20px;
    padding-bottom: 20px;
    /* fallback color */
    background-color: var(--background);

    /* image */
    background-image: url("/assets/bg_folts.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;   /* or "contain" if you prefer */
}




.chat-title-root {
    width: 100%;
}

.chat-title-input {
    font-size: 24px;
    color: var(--testit-blue);          /* or your hex color */
    font-weight: 600;
    height: 40px;
    min-height: 40px;
    line-height: 20px;
    padding-left: 20px;
    padding-top: 6px;
    resize: none;
    border: none;
    border-color: transparent;
    box-shadow: none;
    box-sizing: border-box;
    width: 100%;
}

.main-header {
    padding: 8px 8px;
    border-bottom: 1px solid var(--testit-gray);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.main-logo {
    height: 100px;
    object-fit: contain;
}



