/* Chat Styles */

/* Chat skeleton styles moved to css/skeleton.css */

/* Chat Wrapper - внешний контейнер без фона */
/* Desktop chat - только для десктопа */

.chat-wrapper {
    width: 480px;
    height: calc(100% - 32px);
    margin: var(--spacing-lg) var(--spacing-lg) var(--spacing-lg) 0;
    position: relative;
    z-index: 30;
    display: flex;
    flex-direction: column;
}

/* Chat Panel - внутренний контейнер с фоном и скруглением */
.chat-panel {
    width: 100%;
    height: 100%;
    background: var(--color-bg-chat);
    border-radius: var(--radius-3xl);
    display: flex;
    flex-direction: column;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

/* Desktop chat minimize toggle (top-right) */
#chatToggle.chat-toggle {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    z-index: 100;
    pointer-events: auto;
}

.chat-toggle {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-sm);
    gap: 0;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-circle);
    border: none;
    background: none;
    cursor: pointer;
    opacity: 0.5;
    transition: background var(--transition-base), opacity var(--transition-base);
    pointer-events: auto;
    z-index: 100;
}

.chat-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

.chat-icon {
    width: var(--spacing-2xl);
    height: var(--spacing-2xl);
    opacity: 0.6;
    transition: opacity var(--transition-base);
}

.chat-toggle:hover .chat-icon {
    opacity: 1;
}

/* Точная центровка SVG‑стрелки в кнопке сворачивания чата (как у микрофона/отправки) */
.chat-toggle-icon-svg {
    display: block;
    transform: translateY(1px);
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding: var(--spacing-xl);
    padding-bottom: 200px;
    box-sizing: border-box;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    position: relative;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    /* Hidden scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* Оптимизация производительности скролла */
    will-change: scroll-position;
    -webkit-overflow-scrolling: touch;
    transform: translateZ(0);
    contain: layout style paint;
}

/* Minimized chat widget (desktop) */
.chat-minimized {
    position: fixed;
    right: var(--spacing-2xl);
    bottom: var(--spacing-2xl);
    width: 60px;
    height: 60px;
    padding: 0;
    border-radius: var(--radius-full);
    border: none;
    background: var(--color-bg-chat-minimized);
    color: var(--color-text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    cursor: pointer;
    /* Мягкая плавная тень для темной темы - двойной слой для глубины */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    pointer-events: auto;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

/* Более мягкая плавная тень при hover в темной теме */
.chat-minimized:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18), 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Переопределение для светлой темы (уже есть ниже) */

.chat-minimized:active {
    transform: scale(0.95);
}

/* Светлая тема: более мягкая тень у свернутого чата */
body.light-theme .chat-minimized {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Light theme: icon should be dark/black */
body.light-theme .chat-minimized-icon {
    filter: brightness(0);
    opacity: 0.8;
}

body.light-theme .chat-minimized:hover .chat-minimized-icon {
    opacity: 1;
}

/* Hide minimized widget on appsuite.html mobile only */

.chat-minimized-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    height: 100%;
}

.chat-minimized-icon {
    width: var(--spacing-2xl);
    height: var(--spacing-2xl);
    opacity: 0.9;
}

.chat-minimized-label {
    display: none;
}

.chat-minimized-indicator {
    position: absolute;
    right: var(--spacing-sm);
    top: var(--spacing-sm);
    width: 7px;
    height: 7px;
    border-radius: var(--radius-full);
    background: var(--color-success);
}

.chat-wrapper.minimized .chat-panel,
.chat-wrapper.minimized .chat-input-area {
    display: none !important;
}

.chat-wrapper.minimized {
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* Убеждаемся, что minimized работает на десктопе (ширина > 800px) */
@media (min-width: 801px) {
    /* Базовые правила для minimized на десктопе */
    .chat-wrapper.minimized {
        width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }
    
    .chat-wrapper.minimized .chat-panel,
    .chat-wrapper.minimized .chat-input-area {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Убеждаемся, что minimized виджет показывается на десктопе, когда чат свернут */
    body:not(.appsuite-page):not(:has(.center-content:has(.tool-card))) .chat-wrapper.minimized ~ .chat-minimized,
    body:not(.appsuite-page):not(:has(.center-content:has(.tool-card))) .chat-minimized {
        /* Показываем только если чат свернут */
    }
    
    /* Показываем мини-виджет только когда чат свернут (включая appsuite на десктопе) */
    body:not(:has(.center-content:has(.tool-card))) .chat-wrapper.minimized ~ .chat-minimized,
    body.appsuite-page .chat-wrapper.minimized ~ .chat-minimized {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        z-index: 1000 !important;
    }
    
    /* Скрываем мини-виджет, когда чат развернут */
    body:not(.appsuite-page):not(:has(.center-content:has(.tool-card))) .chat-wrapper:not(.minimized) ~ .chat-minimized,
    body.appsuite-page .chat-wrapper:not(.minimized) ~ .chat-minimized {
        display: none !important;
    }
    
    /* Переопределяем любые правила для мобильных на десктопе */
    body:not(:has(.center-content:has(.tool-card))) .chat-wrapper.minimized {
        width: 0 !important;
        margin: 0 !important;
    }
    
    body:not(:has(.center-content:has(.tool-card))) .chat-wrapper.minimized .chat-panel,
    body:not(:has(.center-content:has(.tool-card))) .chat-wrapper.minimized .chat-input-area {
        display: none !important;
    }
}

/* On appsuite.html page, minimize chat by default to show tool cards (desktop only) */
/* On mobile, chat is completely hidden - see media queries below */

.chat-messages::-webkit-scrollbar {
    display: none;
}

/* Welcome Message */
.welcome-message {
    text-align: center;
    color: var(--color-text-tertiary);
    font-size: var(--font-size-lg);
    font-family: var(--font-primary);
    padding: var(--spacing-xl);
    border-radius: var(--radius-md);
    margin: auto 0;
}

/* Message Bubbles - WhatsApp style */
.message {
    display: flex;
    margin-bottom: var(--spacing-sm);
    animation: messageSlideIn var(--transition-slow) ease-out;
    max-width: 100%;
    box-sizing: border-box;
}

.message:first-child {
    margin-top: 0;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.message.ai {
    justify-content: flex-start;
}

.message-bubble {
    max-width: 75%;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-md);
    line-height: var(--line-height-normal);
    font-family: var(--font-primary);
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    position: relative;
    text-align: left;
    box-sizing: border-box;
    min-width: 0;
}

/* User message bubble (right side, white) */
.message.user .message-bubble {
    background: #ffffff;
    color: #000000 !important;
    border-bottom-right-radius: 4px;
}

/* Улучшаем контраст текста в сообщениях пользователя */
.message.user .message-bubble * {
    color: #000000 !important;
}

/* AI message bubble (left side, lighter gray for better contrast) */
.message.ai .message-bubble {
    background: #2a2a2a;
    color: #ffffff !important;
    border-bottom-left-radius: 4px;
    max-width: 100%;
    width: 100%;
}

/* Улучшаем контраст текста в сообщениях AI */
.message.ai .message-bubble * {
    color: #ffffff !important;
}

.message.ai .message-bubble p,
.message.ai .message-bubble span,
.message.ai .message-bubble div {
    color: #ffffff !important;
}

/* Message Timestamp */
.message-time {
    font-size: var(--font-size-xs);
    color: var(--color-text-tertiary);
    margin-top: 2px;
    text-align: left;
    font-family: var(--font-primary);
}

.message.user .message-time {
    color: var(--color-text-secondary);
}

/* Message Status Indicators */
.message-status {
    display: flex;
    align-items: center;
    margin-top: var(--spacing-sm);
    font-size: var(--font-size-xs);
    color: var(--color-text-tertiary);
    font-family: var(--font-primary);
    justify-content: flex-start;
}

.message.user .message-status {
    color: var(--color-text-secondary);
}

/* Светлая тема: мягкие пузырьки и тёмный текст */
body.light-theme .chat-panel {
    background: rgb(255, 255, 255); /* One tone lighter than body */
}

body.light-theme .chat-messages {
    background-color: transparent;
}

/* Пузырь пользователя – светлый с тёмным текстом в light-теме */
body.light-theme .message.user .message-bubble {
    background: #f5f5f5;
    color: #000000;
}

/* Улучшаем контраст текста в сообщениях пользователя в light-теме */
body.light-theme .message.user .message-bubble * {
    color: #000000 !important;
}

/* Пузырь ИИ – немного темнее, но все равно светлый с тёмным текстом */
body.light-theme .message.ai .message-bubble {
    background: #e5e5e5;
    color: #000000;
}

/* Улучшаем контраст текста в сообщениях AI в light-теме */
body.light-theme .message.ai .message-bubble * {
    color: #000000 !important;
}

body.light-theme .message.ai .message-bubble p,
body.light-theme .message.ai .message-bubble span,
body.light-theme .message.ai .message-bubble div {
    color: #000000 !important;
}

body.light-theme .message-time {
    color: #9ca3af;
}

body.light-theme .message-status {
    color: #9ca3af;
}

/* Светлая тема: градиент и тень для инпута чата */
body.light-theme .chat-input-area {
    background: linear-gradient(to top, #ffffff 0%, rgba(18, 18, 18, 0) 100%);
}

body.light-theme .chat-input-wrapper {
    box-shadow: none;
    border: 1px solid transparent; /* Transparent border for smooth appearance */
}

/* Светлая тема: более чистый, мягкий градиент под кнопкой отправки */
body.light-theme .chat-input-gradient {
    background: color(display-p3 0.92 0.92 0.92);
    opacity: 0.7;
}

/* Светлая тема: чёрная кнопка, белая иконка (currentColor работает от color) */
body.light-theme .chat-input-primary-btn {
    background: #000000;
    color: #ffffff;
}

/* Светлая тема: add — чёрная активная кнопка с белой иконкой (как send/micro) */
body.light-theme .chat-input-add-btn {
    color: #6b7280; /* серый плюс по умолчанию */
}

body.light-theme .chat-input-add-btn.active {
    background: #000000;
    color: #ffffff;
    opacity: 1;
}

/* Светлая тема: micro — серый микрофон по умолчанию */
body.light-theme .chat-input-micro-btn {
    color: #6b7280; /* серый микрофон по умолчанию */
}

/* Светлая тема: активный микрофон — зеленая кнопка с белой иконкой */
body.light-theme .chat-input-micro-btn.active {
    background: var(--color-button-primary);
    color: #ffffff;
}

/* В light‑теме для активного микрофона белая иконка */
body.light-theme .chat-input-micro-btn.active .chat-input-micro-icon {
    color: #ffffff !important;
    filter: none !important;
}

body.light-theme .chat-input-micro-btn.active .chat-input-micro-icon svg,
body.light-theme .chat-input-micro-btn.active .chat-input-micro-icon-svg {
    color: #ffffff !important;
    filter: none !important;
}

body.light-theme .chat-input-micro-btn.active .chat-input-micro-icon svg path,
body.light-theme .chat-input-micro-btn.active .chat-input-micro-icon-svg svg path {
    stroke: #ffffff !important;
    fill: none !important;
}

body.light-theme .chat-input-micro-btn.active .chat-input-micro-icon svg,
body.light-theme .chat-input-micro-btn.active .chat-input-micro-icon-svg {
    filter: brightness(0) invert(1);
}

body.light-theme .chat-input-micro-btn.active .chat-input-micro-icon svg path,
body.light-theme .chat-input-micro-btn.active .chat-input-micro-icon-svg svg path {
    stroke: #ffffff !important;
    stroke-opacity: 1 !important;
}

body.light-theme .chat-input-micro-btn.active .chat-input-micro-icon svg path,
body.light-theme .chat-input-micro-btn.active .chat-input-micro-icon-svg svg path {
    stroke: #ffffff !important;
    stroke-opacity: 1 !important;
}

/* Светлая тема: более заметный hover для круглых иконок чата */
body.light-theme .chat-input-add-btn:hover,
body.light-theme .chat-input-micro-btn:hover,
body.light-theme #chatToggle.chat-toggle:hover {
    background: rgba(0, 0, 0, 0.06);
    opacity: 1;
}

/* Chat Input Area - поверх контента внизу */
.chat-input-area {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-xl);
    /* Внизу плотный фон, вверх уходит в прозрачность (тёмная тема) */
    background: var(--color-bg-chat-input-area);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    z-index: 10;
    box-sizing: border-box;
}

/* Form */
.chat-input-wrapper {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--spacing-2xl);
    gap: var(--spacing-lg);
    width: 100%;
    min-height: auto;
    height: auto;
    background: var(--color-bg-input);
    border-radius: var(--radius-2xl);
    position: relative;
    border: 1px solid var(--color-border-primary);
    box-shadow: none;
    transition: background-color var(--transition-base), border-color var(--transition-base);
}

/* При фокусе на инпут - более светлый фон в темной теме, обводка без изменений */
.chat-input-wrapper:focus-within {
    background: var(--color-bg-input-focus); /* Lighter tone for dark theme */
    border-color: var(--color-border-primary); /* Keep default border */
}

/* Content */
.chat-input-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0px;
    gap: var(--spacing-lg);
    width: 100%;
    min-height: auto;
    height: auto;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 1;
}

/* Input Field */
.chat-input-field {
    margin: 0 auto;
    width: 100%;
    min-height: 23px;
    height: auto;
    font-family: var(--font-primary);
    font-style: normal;
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-xl);
    line-height: var(--line-height-normal);
    color: var(--color-input-text);
    background: none;
    border: none;
    outline: none;
    padding: 0 0 0 4px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    resize: none;
    overflow: hidden;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Светлая тема: текст в инпуте — чисто чёрный */
body.light-theme .chat-input-field {
    color: #000000;
}

body.light-theme .chat-input-field:-webkit-autofill,
body.light-theme .chat-input-field:-webkit-autofill:hover,
body.light-theme .chat-input-field:-webkit-autofill:focus,
body.light-theme .chat-input-field:-webkit-autofill:active {
    -webkit-text-fill-color: #000000 !important;
}

.chat-input-field::placeholder {
    opacity: 0.5;
}

.chat-input-field:focus::placeholder {
    opacity: 0;
}

/* Отключение автозаполнения браузера */
.chat-input-field:-webkit-autofill,
.chat-input-field:-webkit-autofill:hover,
.chat-input-field:-webkit-autofill:focus,
.chat-input-field:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #232323 inset !important;
    -webkit-text-fill-color: #CCCCCC !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Thumbnails Container */
.chat-input-thumbnails {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-sm);
    width: 100%;
    flex-wrap: wrap;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

/* Thumbnail */
.chat-input-thumbnail {
    position: relative;
    width: var(--spacing-4xl);
    height: var(--spacing-4xl);
    border-radius: var(--radius-xs);
    overflow: hidden;
    flex-shrink: 0;
}

.chat-input-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Close Button - hidden by default, shown on hover */
.chat-input-thumbnail-close {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: var(--spacing-lg);
    height: var(--spacing-lg);
    border: none;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-circle);
    color: var(--color-text-inverse);
    font-size: var(--font-size-xs);
    font-family: var(--font-primary);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity var(--transition-base);
    padding: 0;
    z-index: 1;
    font-weight: var(--font-weight-bold);
}

.chat-input-thumbnail:hover .chat-input-thumbnail-close {
    opacity: 1;
}

.chat-input-thumbnail-close:hover {
    background: #FFFFFF;
}

/* Block */
.chat-input-block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    gap: 204px;
    margin: 0 auto;
    width: 100%;
    height: 36px;
    flex: none;
    order: 2;
    align-self: stretch;
    flex-grow: 0;
}

/* Links */
.chat-input-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: var(--spacing-xs);
    width: 120px;
    height: var(--spacing-4xl);
    flex: none;
    order: 0;
    flex-grow: 0;
}

/* Button Add */
.chat-input-add-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-sm);
    gap: var(--spacing-xs);
    width: var(--spacing-4xl);
    height: var(--spacing-4xl);
    border-radius: var(--radius-circle);
    border: none;
    background: none;
    cursor: pointer;
    flex: none;
    order: 0;
    flex-grow: 0;
    opacity: 0.5;
    transition: background var(--transition-base), opacity var(--transition-base);
}

.chat-input-add-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

.chat-input-add-icon {
    width: var(--spacing-2xl);
    height: var(--spacing-2xl);
    flex: none;
    order: 0;
    flex-grow: 0;
}


/* Button Micro */
.chat-input-micro-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-sm);
    gap: var(--spacing-xs);
    width: var(--spacing-4xl);
    height: var(--spacing-4xl);
    border-radius: var(--radius-circle);
    border: none;
    background: none;
    cursor: pointer;
    flex: none;
    order: 2;
    flex-grow: 0;
    opacity: 0.5;
    transition: background var(--transition-base), opacity var(--transition-base);
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.chat-input-micro-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

.chat-input-micro-btn.active {
    background: var(--color-button-primary) !important;
    opacity: 1;
    color: #ffffff !important;
}

/* В активном состоянии ВСЕ дочерние элементы белые */
.chat-input-micro-btn.active,
.chat-input-micro-btn.active *,
.chat-input-micro-btn.active .chat-input-micro-icon,
.chat-input-micro-btn.active .chat-input-micro-icon *,
.chat-input-micro-btn.active .chat-input-micro-icon svg,
.chat-input-micro-btn.active .chat-input-micro-icon-svg,
.chat-input-micro-btn.active .chat-input-micro-icon-svg svg,
.chat-input-micro-btn.active .chat-input-micro-icon svg path,
.chat-input-micro-btn.active .chat-input-micro-icon-svg svg path {
    color: #ffffff !important;
}

/* SVG path использует currentColor, поэтому будет белым */
.chat-input-micro-btn.active .chat-input-micro-icon svg path,
.chat-input-micro-btn.active .chat-input-micro-icon-svg svg path {
    stroke: currentColor !important;
    stroke-opacity: 1 !important;
}

/* Активное состояние + hover - иконка остается белой */
.chat-input-micro-btn.active:hover {
    background: var(--color-button-primary) !important;
    color: #ffffff !important;
}

.chat-input-micro-btn.active:hover *,
.chat-input-micro-btn.active:hover .chat-input-micro-icon svg path,
.chat-input-micro-btn.active:hover .chat-input-micro-icon-svg svg path {
    color: #ffffff !important;
    stroke: currentColor !important;
}

.chat-input-micro-icon {
    width: var(--spacing-2xl);
    height: var(--spacing-2xl);
    flex: none;
    order: 0;
    flex-grow: 0;
    color: inherit;
}

.chat-input-micro-icon svg,
.chat-input-micro-icon-svg {
    color: inherit;
}

.chat-input-micro-icon svg path,
.chat-input-micro-icon-svg svg path {
    stroke: currentColor;
}

/* ПРИНУДИТЕЛЬНО белая иконка в активном состоянии (даже без hover) */
.chat-input-micro-btn.active .chat-input-micro-icon,
.chat-input-micro-btn.active .chat-input-micro-icon-svg {
    color: #ffffff !important;
}

.chat-input-micro-btn.active .chat-input-micro-icon svg,
.chat-input-micro-btn.active .chat-input-micro-icon-svg svg {
    color: #ffffff !important;
}

.chat-input-micro-btn.active .chat-input-micro-icon svg path,
.chat-input-micro-btn.active .chat-input-micro-icon-svg svg path {
    stroke: currentColor !important;
    stroke-opacity: 1 !important;
    fill: none !important;
}

/* Primary Wrapper with Gradient */
.chat-input-primary-wrapper {
    position: relative;
    width: 32px;
    height: 32px;
    flex: none;
    order: 1;
    flex-grow: 0;
}

/* Gradient under primary button */
.chat-input-gradient {
    position: absolute;
    width: 100px;
    height: 76px;
    left: calc(50% - 100px/2);
    top: -20px;
    background: #33312F;
    background: color(display-p3 0.200 0.192 0.184);
    filter: blur(28px);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Показать градиент только когда кнопка активна */
.chat-input-primary-wrapper:has(.chat-input-primary-btn:not(:disabled)) .chat-input-gradient {
    opacity: 1;
}

/* Button Primary */
.chat-input-primary-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 0;
    position: absolute;
    width: var(--spacing-4xl);
    height: var(--spacing-4xl);
    right: 0px;
    top: 0px;
    background: var(--color-text-primary); /* белый фон в темной теме (#ffffff) */
    color: var(--color-text-inverse); /* черный цвет стрелки в темной теме на белом фоне (#000000) */
    border-radius: var(--radius-3xl);
    border: none;
    cursor: pointer;
    flex: none;
    order: 0;
    flex-grow: 0;
    z-index: 1;
    transition: opacity var(--transition-base);
}

.chat-input-primary-btn:hover:not(:disabled) {
    opacity: 0.9;
}

.chat-input-primary-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chat-input-primary-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex: none;
    order: 0;
    flex-grow: 0;
}

/* Точная центровка SVG‑стрелки внутри кнопки отправки */
.chat-input-primary-icon-svg {
    display: block;
    margin: 0 auto;
    color: var(--color-text-inverse); /* черный цвет стрелки на белом фоне */
}

/* Темная тема: черная стрелка на белом фоне */
body:not(.light-theme) .chat-input-primary-icon-svg {
    color: var(--color-text-inverse);
}

body:not(.light-theme) .chat-input-primary-icon-svg svg {
    fill: var(--color-text-inverse);
}

body:not(.light-theme) .chat-input-primary-icon-svg svg path {
    fill: var(--color-text-inverse) !important;
}

/* Voice Toggle Button */
.voice-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0.4;
    flex-shrink: 0;
}

.voice-toggle-btn:hover {
    opacity: 0.8;
}

.voice-toggle-btn.active {
    opacity: 1;
    background: #ffffff;
}

.voice-toggle-btn.active .voice-icon {
    color: #0A0A0A;
}

.voice-icon {
    width: 20px;
    height: 20px;
    color: #ffffff;
    transition: color 0.2s ease;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Typing Indicator for AI */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-lg);
    border-bottom-left-radius: var(--radius-xs);
    max-width: 80px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--color-text-tertiary);
    border-radius: var(--radius-circle);
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { 
    animation-delay: -0.32s; 
}

.typing-dot:nth-child(2) { 
    animation-delay: -0.16s; 
}

.typing-dot:nth-child(3) { 
    animation-delay: 0s; 
}

@keyframes typing {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Адаптивные стили для мобильных устройств */
/* Mobile range 320-800px: fullscreen chat with mobile menu on top */
/* Mobile chat styles - отдельный мобильный чат */

/* ============================================
   MARKDOWN STYLES (для таблиц и форматирования)
   ============================================ */

.message-bubble.markdown-content {
    line-height: 1.6;
}

.message-bubble.markdown-content p {
    margin: 0.5em 0;
}

.message-bubble.markdown-content p:first-child {
    margin-top: 0;
}

.message-bubble.markdown-content p:last-child {
    margin-bottom: 0;
}

.message-bubble.markdown-content h1,
.message-bubble.markdown-content h2,
.message-bubble.markdown-content h3,
.message-bubble.markdown-content h4,
.message-bubble.markdown-content h5,
.message-bubble.markdown-content h6 {
    margin: 1em 0 0.5em 0;
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.3;
}

.message-bubble.markdown-content h1:first-child,
.message-bubble.markdown-content h2:first-child,
.message-bubble.markdown-content h3:first-child {
    margin-top: 0;
}

.message-bubble.markdown-content h1 {
    font-size: 1.5em;
}

.message-bubble.markdown-content h2 {
    font-size: 1.3em;
}

.message-bubble.markdown-content h3 {
    font-size: 1.1em;
}

.message-bubble.markdown-content ul,
.message-bubble.markdown-content ol {
    margin: 0.5em 0;
    padding-left: 1.5em;
}

.message-bubble.markdown-content li {
    margin: 0.25em 0;
}

.message-bubble.markdown-content code {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-size: 0.9em;
    font-family: 'Courier New', monospace;
}

.message-bubble.markdown-content pre {
    background: rgba(0, 0, 0, 0.3);
    padding: 1em;
    border-radius: 6px;
    overflow-x: auto;
    margin: 0.5em 0;
}

.message-bubble.markdown-content pre code {
    background: transparent;
    padding: 0;
}

.message-bubble.markdown-content blockquote {
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    padding-left: 1em;
    margin: 0.5em 0;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.message-bubble.markdown-content strong {
    font-weight: 600;
}

.message-bubble.markdown-content em {
    font-style: italic;
}

.message-bubble.markdown-content del,
.message-bubble.markdown-content s {
    text-decoration: line-through;
    opacity: 0.7;
}

/* Таблицы */
.markdown-table-wrapper {
    overflow-x: auto;
    margin: 1em 0;
    border-radius: 6px;
}

.markdown-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.2);
    font-size: 0.9em;
}

.markdown-table thead {
    background: rgba(255, 255, 255, 0.1);
}

.markdown-table th {
    padding: 0.75em 1em;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
}

.markdown-table td {
    padding: 0.6em 1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.markdown-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.markdown-table tbody tr:last-child td {
    border-bottom: none;
}

/* Для пользовательских сообщений (белый фон) */
.message.user .markdown-table {
    background: rgba(0, 0, 0, 0.05);
}

.message.user .markdown-table thead {
    background: rgba(0, 0, 0, 0.1);
}

.message.user .markdown-table th {
    color: rgba(0, 0, 0, 0.8);
    border-bottom-color: rgba(0, 0, 0, 0.2);
}

.message.user .markdown-table td {
    color: rgba(0, 0, 0, 0.7);
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.message.user .markdown-table tbody tr:hover {
    background: rgba(0, 0, 0, 0.05);
}

.message.user .markdown-content code {
    background: rgba(0, 0, 0, 0.1);
}

.message.user .markdown-content pre {
    background: rgba(0, 0, 0, 0.05);
}

.message.user .markdown-content blockquote {
    border-left-color: rgba(0, 0, 0, 0.3);
    color: rgba(0, 0, 0, 0.7);
}

/* Скрываем свернутый чат на appsuite только на мобильных устройствах */
@media (max-width: 800px) {
    body.appsuite-page .chat-minimized {
        display: none !important;
    }
}

