html,
body {
    font-size: 13px;
}

#react-entry-point,
.mantine-AppShell-root,
.mantine-MantineProvider-root {
    font-size: 13px;
}

.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: clamp(14px, 2vw, 28px);
    padding-right: clamp(14px, 2vw, 28px);
    padding-top: 14px;
    padding-bottom: 14px;
    /* 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-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
}

.chat-title-edit-icon {
    color: #9ca3af;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.15s ease;
}

.chat-title-wrapper:hover .chat-title-edit-icon {
    opacity: 1;
}

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

.chat-title-input {
    font-size: clamp(15px, 1.2vw, 18px);
    color: var(--testit-blue);
    font-weight: 600;
    height: 36px;
    min-height: 36px;
    line-height: 20px;
    padding-left: 8px;
    padding-top: 4px;
    resize: none;
    border: none;
    border-color: transparent;
    box-shadow: none;
    box-sizing: border-box;
    width: 100%;
}

.chat-title-input:focus {
    border-bottom: 2px solid var(--testit-gray) !important;
    box-shadow: none !important;
}

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

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



