:root {
      box-sizing: border-box;
    --container-marg: clamp(2px, 10vw, 127px);
}

*, *::before, *::after {
  box-sizing: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}


/* Remove default margin */
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}


h1 {
  font-family: "Roboto Serif", serif;
  font-optical-sizing: auto;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 600;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "GRAD" 0;
}

h2 {
  font-family: "Roboto Serif", serif;
  font-optical-sizing: auto;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;  
  font-weight: 600;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "GRAD" 0;
}

h3 {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-size: 2rem;
  line-height: 1.2; 
  margin-bottom: 0.5rem;  
  opacity: 0.8;
  font-weight: 500;
  font-style: normal;
}

h4 {
  font-family: "Roboto Serif", serif;
  font-optical-sizing: auto;
  font-size: 1.8rem;
  line-height: 1.2;
  opacity: 0.8;
  font-weight: 700;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "GRAD" 0;
}

h5 {
  font-family: "Roboto Serif", serif;
  font-optical-sizing: auto;
  font-size: 1.5rem;
  line-height: 1.2;  
  opacity: 0.7;
  font-weight: 700;
  font-style: italic;
  font-variation-settings:
    "wdth" 100,
    "GRAD" 0;
}

h6 {
  font-family: "Roboto Serif", serif;
  font-optical-sizing: auto;
  font-size: 1.3rem;
  line-height: 1.2;  
  opacity: 0.9;
  font-weight: 400;
  font-style: italic;
  font-variation-settings:
    "wdth" 100,
    "GRAD" 0;
}



#upgrade {
  display: none;
}


a {
    text-decoration: none;
    color: initial;
    padding: 5px;
}


a:hover {
    text-decoration: none;
    background-color: #ddd;
    background-size: cover;
    transition: background-color 0.2s ease-in-out;
}


a:focus {
    text-decoration: none;
    background-color: #ddd;
    background-size: auto;
    transition: background-color 0.2s ease-in-out;
}


a:active {
    text-decoration: none;
    background-color: #ddd;
    background-size: contain;
    transition: background-color 0.2s ease-in-out;
}


a.visited {
    text-decoration: none;
    color: inherit;
}

a.no-effects,
a.no-effects:visited,
a.no-effects:hover,
a.no-effects:focus,
a.no-effects:active {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  outline: none;
  box-shadow: none;
  cursor: pointer;
}


.container-icons-column {
    display: flex;
    text-align: start;
    flex-direction: column;
    justify-content: start;
    /*align-items: self-start;!* Выравнивает элементы по вертикали *!*/
    /*text-decoration: none;*/
}

.item-content {
    display: flex;
    align-items: center;
    line-height: 15px;
}

.item-content img {
    width: 20px;
    height: auto;
    margin-right: 10px;
}


.toggles {
    display: flex;
    align-items: center;
    justify-content: start;
    background-color: transparent;

}
.user-info {
    position: absolute;
    /*margin-left: auto;*/
    top: 10px;
    right: 10px;
    width: 1.5rem;
    height: 1.5rem;
    background-color: thistle;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold; /* опционально */
    color: white;       /* или тёмный цвет, если фон светлый */
    font-size: 0.8rem;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    z-index: 100;
}
.user-info-small {
    margin-left: auto;
    margin-top: 5px;
    margin-right: 10px;
    width: 2.5rem;
    height: 2.5rem;
    background-color: thistle;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: bold; /* опционально */
    color: white;       /* или тёмный цвет, если фон светлый */
    cursor: pointer;
    font-size: 1rem;  /* подбирается по вкусу */
}

/* === ГЛАВНЫЙ КОНТЕЙНЕР === */
.layout {
    /* position: relative; */
    display: flex; /* Делаем flex-контейнер */
    min-height: 100vh; /* Заполняем высоту экрана */
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* === САЙДБАР === */
#sidebar {
    position: relative;
    width: 250px; /* 1/6 экрана */
    min-width: 250px;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    background: #ecebeb;
    background-size: cover;
    background-position: center center;
    transition: transform 0.3s ease-in-out;
    margin: 0;
    padding: 0 1rem 0 1rem;
    z-index: 10;
}

.logo {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: start;
    z-index: 15;
}
.side-bar-header{
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    width: 100%;
    margin-bottom: 1rem;
    background-color: #ecebeb;
}
.new-chat-button {
    background-color: transparent;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 22px;
    padding: 5px;
    width: fit-content;
    height: fit-content;
    margin-right: auto;
    z-index: 12;
}


.new-chat-button:hover {
    background-color: #ddd;
}
.new-chat-button:active {
    background-color: #ddd;
}
.new-chat-button:focus {
    transform: scale(1.1);
}

.sidebar-main{
    display: flex;
    justify-content: center;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 0.5rem;

}

 .chat-entry {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
     border-radius: 10px;
     width: 200px;
     min-width: 0;
  }

  .delete-chat {
    opacity: 0;
    transition: opacity 0.2s ease;
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 16px;
    z-index: 18;
    /*padding: 0 1rem;*/
  }

  .delete-chat:hover {
    color: red;
  }

  .chat-entry:hover .delete-chat {
  opacity: 1;
}

.list-button {
    position:relative;
    background-color: transparent;
    flex-grow: 1;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    text-align: left;
    padding: 0 5px;
    width: 100%;
    height: 1.5rem;
    margin: auto;
    white-space: nowrap;       /* Текст в одну строку */
    overflow: hidden;          /* Обрезаем выходящий текст */
    text-overflow: ellipsis;   /* Добавляем "..." в конце */
    max-width: 180px;
    z-index: 12;
}

.chat-entry:hover {
    background-color: #ddd;
    transition: background-color 0.2s ease-in-out;
}
.active {
    background-color: #ddd;
}
.chat-entry:focus {
    /*border: 1px dashed #2c2c2c;*/
    background-color: #ddd;
}

.delete-button {
    position: absolute;
    top: -5px;
    right: 1rem;
    background: transparent;
    color: #777575;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 100px;
}

/* === КНОПКА ОТКРЫТИЯ МЕНЮ === */
#open-menu-btn {
    display: none;
    /*font-size: larger;*/
    width: fit-content;
    height: fit-content;
    border: none;
    /*margin-right: 20px!* По умолчанию скрыта *!*/
}

#close-menu-btn {
    display: none;
    background: transparent;
    width: fit-content;
    height: fit-content;
    border: none;
    position: absolute;
    top: 10px;
    left: 240px;
    z-index: 120;
    /*margin: auto!* По умолчанию скрыта *!*/
}

/* === ОТКРЫТЫЙ САЙДБАР === */
#sidebar.open {
    transform: translateX(0);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}


body.menu-open #open-menu-btn {
  display: none;   /* прячем кнопку открытия */
}

body.menu-open #close-menu-btn {
  display: block;  /* показываем кнопку закрытия */
}

.sidebar-footer{
    display: flex;
    height: fit-content;
    background-color: #ecebeb;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: small;
}
.side-bar-hint-button {
    /*bottom: 2rem; !* добавь если кнопка прилипает к верху *!*/
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /*gap: 6px;*/
    left: 0;
    color: #777575;
    background-color: transparent;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    padding: 1px;
    width: 150px;
    height: 30px;
    margin-right: 10px;
    z-index: 12;
    border: None;
}
.side-bar-hint-button:hover {
    /*background-color: #ddd;*/
    border: 1px solid #2c2c2c;
    /* Меняем цвет при наведении */
}

.side-bar-hint-button:active {
    border: 1px solid #015050;
    /*color: */
}


.side-bar-hint-button:focus {
   /*transform: scale(1.1);*/
    background-color: #ecebeb;
}

/*Конец сайдабара*/


/* === ОСНОВНОЙ КОНТЕНТ === */


#main {
    flex-grow: 1; /* Заполняет оставшееся пространство */
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    background-color: #ffffff;
    z-index: 5;
}
/* Фиксированная шапка внутри main */

.main-header {
    /*background: #ddd;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px;
    /*height: 2vh;*/
    text-align: center;
    position: sticky;
    top: 5vh;
    flex-shrink: 0;
    z-index: 6;
}
.main-header > p{
    margin: 0;
}
.container-main {
    flex-grow: 1;
    overflow-y: scroll;
    /* font-family: sans-serif; */
    /*font-size: 14px;*/
    height: 75vh;
    overflow-wrap: break-word;
    text-rendering: optimizelegibility;
    text-size-adjust: 100%;
    text-underline-offset: 2px;
    line-height: 1.5;
    unicode-bidi: isolate;
    align-items: center; /* Центрируем содержимое по вертикали */
    max-width: 100%;
    margin: 0.5em auto;
    padding-right: 1rem;
    padding-left: 1rem;
    padding-bottom: 1rem;
    z-index: 4;
}

.user_text {
    text-align: right;
    font-weight: bolder;
}

/* Общие стили для ответов */

/*.query-container {*/
/*    position: relative;*/
/*    display: block;*/
/*}*/

.image-wrapper {
    display: flex;
    flex-direction: row;
}


.image-wrapper-img {
    height: 300px;
    border-radius: 20px;
    width: auto;
    margin-left: auto;
    margin-bottom: 1rem;
    display: none;

}


.query-body {
        position: relative;
        background-color: #ecebeb; /* Лёгкий cian цвет */
        border-radius: 20px; /* Скругление углов */
        display: block; /* Чтобы контент внутри не растягивал элемент */
        max-width: clamp(250px, 50%, 800px);
        margin: auto;
        margin-right: 0;
        text-align: right;
        margin-bottom: 1rem;
        padding: 1rem;
    }

.edit-button {
    position: absolute;
    bottom: 5px;
    left: 5px;
    background: transparent;
    color: #777575;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 100px;
}

.response-body {
    display: block;
    min-height: 40px !important;
    max-height: none;
    border-radius: 20px;
    padding: 1rem;
    background-color: #ffffff;
    margin-bottom: 12vh;
}
/*  Обычный текст (не код) */

.response-body-plain {
    position: relative;
    font-family: inherit;
    font-weight: 400;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    padding: 1rem;
}

/*  Контейнер для кода */

.code-snippet {
    position: relative;
    /*min-height: 50px;*/
    background: #ffffff;
    padding: 0;
    border-radius: 5px;
    margin: 0;
    text-align: initial;
    white-space: pre;
    /*overflow-wrap: break-word;*/

}

/*  Сам код */
.code-body {
    margin: 0;
    font-family: "Fira Code", monospace;
    font-weight: 300;
    font-size: 16px;
    padding: 15px;
    background: #222;
    color: #c2c7d0;
    border-radius: 5px;
    white-space: pre-wrap;
    overflow-wrap: break-word;
}

/*  Кнопка копирования */
.copy-button {
    position: absolute;
    top: 20px;
    right: 1px;
    background: transparent;
    color: #777575;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 100px;
    margin: 0;
}

.copy-button:hover {
    background: rgba(44, 44, 44, 0.62);
}

.copied {
    background: green;
    transform: scale(1.1);
}


/*конец тела ответов*/

/*тело запросов*/


.build-info {
    position: absolute;
    bottom: 0;
    font-size: small;
    font-weight: lighter;
    display: flex; /* Inner flex container */
    align-items: end;
    justify-content: center;
    width: 100%;
}

/*конец тела запросов*/


/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  /*border-bottom: 1px dotted black; !* If you want dots under the hoverable text *!*/
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 80px;
  top: -5px;
  left: 15%;
  background-color: #777575;
  color: #ecebeb;
  text-align: center;
    font-size: 10px;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 18;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}
/* Интро контент*/
/* ──────────── Базовый контейнер (две области) ──────────── */
.content-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;   /* ❶ узкий sidebar + всё остальное  */
    grid-template-areas: "sidebar content";
    overflow-y: auto;
}

/* ──────────── Контейнер для карточек ──────────── */
.guest-content {
    grid-area: content;
    display: grid;
    gap: 12px;
    padding: 2px;
    width: 100%;

    /* По умолчанию одна колонка (мобильная) */
    grid-template-columns: 1fr;
}

/* ≥768 px — 2 колонки */
@media (min-width: 768px) {
    .guest-content {
        grid-template-columns: repeat(2, 1fr);
        padding:  14px 24px;
    }
    .content-wrapper {
        grid-template-columns: 12px 1fr;
    }
}

/* ≥1200 px — 3 колонки */
@media (min-width: 1200px) {
    .guest-content {
        grid-template-columns: repeat(3, 1fr);
        padding:  24px 48px;
    }
    .content-wrapper {
        grid-template-columns: 24px 1fr;
    }
}

/* ──────────── Карточки ──────────── */
.box {
    background: lightsalmon;
    height: 230px;
    padding: 20px;
    text-decoration: none;
    color: lightcyan;
    display: block;
}

.box:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  /*cursor: pointer;*/
}

/* Первая карточка на десктопе (≥1200) — во всю ширину,
   на планшете (768-1199) — во 2 колонки, на мобильном — в 1 */
.box:nth-child(1) {
    grid-column: span 1;        /* мобильный */

    @media (min-width: 768px) {
        grid-column: span 2;    /* планшет */
    }
    @media (min-width: 1200px) {
        grid-column: span 3;    /* десктоп */
    }
}

.intro-block {
  padding: 16px;

  box-sizing: border-box;
   @media (min-width: 768px) {
        margin-bottom: 12px; /* чтобы отделить от следующей карточки */
    }

}

/* «Особая» карточка  — по тому же принципу */
.special {
    grid-column: span 1;
    padding: 16px;
    box-sizing: border-box;

    @media (min-width: 768px) {
        grid-column: span 1;
        margin-bottom: 12px; /* чтобы отделить от следующей карточки */
    }
    @media (min-width: 1200px) {
        grid-column: span 2;
    }
}

/* Конец интро контента*/

/*футтер    */

.main-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: calc(14vw - 30px);
    margin-left: calc(14vw - 30px);
    min-height: 160px;
    max-height: 350px;
    background: #ffffff;
    padding: 5px;
    position: sticky;
    bottom: 0;
    z-index: 10;
    text-size-adjust: 100%;
    /*overflow:hidden;*/
}

.text-area {
    left: 0;
    flex-grow: 1;
    border: solid 2px #ecebeb;
    border-radius: 20px;
    box-shadow: #afabab 3px 3px 7px;
    margin-bottom: 1rem;
    width: 100%;
    min-height: 130px;
    max-height: 300px;
    overflow-y: auto;
    resize: none;
    font-family: sans-serif;
    font-size: 18px;
    font-style: normal;
    text-size-adjust: 100%;
    font-weight: 400;
    height: 30px;
    line-height: 20px;
    padding: 4px 42px 3.5rem 1rem;
    transition: height 0.2s ease-in-out;
    z-index: 10;
}
.upload{
    opacity: 0;
    position: absolute;
    cursor: pointer;
    min-height: 200px;
    height: 100%;
    width: 100%;
    left: 0;
    bottom: 7vh;
    flex-grow: 1;
    max-height: 300px;

}
.upload-label {
    /*position: relative;*/
    display: inline-block;
    min-height: 200px;
    height: 100%;
    width: 100%;
    border: 2px dashed #ecebeb;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-style: normal;
    text-size-adjust: 100%;
    line-height: 20px;
    padding: 48px;
}

.upload-label:hover {
    box-shadow: #afabab 3px 3px 7px;
}

.upload-label-drop{
    display: block;
    font-weight: 600;
    color: #363636;
    font-size: 14px;
    margin-bottom: 8px;
}

.upload-label-or{
        font-weight: 500;
        font-size: 12px;
        color: #6b7280;
        display: block;
        margin-bottom: 8px;
}

.upload-label-browse{
    font-weight: 500;
    font-size: 14px;
    color: #363636;
    display: inline-block;
    padding: 8px 28px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;

}
/*кнопка отправки запроса в чат*/
.upload-btn {
    text-align: center;
    font-weight: 500;
    bottom: 1rem;
    background-color: lightcyan;
    color: #777575;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    padding: 8px 28px;
    margin-bottom: 1rem;
    z-index: 12;
    border: 1px solid #ddd;
    animation: borderBlink 1s infinite;

}

@keyframes borderBlink {
  0%, 100% {
    border-color: #00aaff;
  }
  50% {
    border-color: #ffffff;
  }
}


.upload-btn:hover {
    /*background-color: #ddd;*/
    border: 1px solid #015050;
    /* Меняем цвет при наведении */
}

.upload-btn:active {
    border: 1px solid #015050;
    /*color: */
}


.upload-btn:focus {
   /*transform: scale(1.1);*/
    background-color: #cce8b6;
}

.image-thumb {
    position: absolute;
    bottom: 2rem; /* добавь если кнопка прилипает к верху */
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*gap: 6px;*/
    left: 30px;
    z-index: 12;
}

.delete-image-thumb-button {
    width: 16px;
    height: 16px;
    position: absolute;
    display: none;
    align-items: center;
    justify-content: center;
    top: -31px;
    /*left: 2.1rem;*/
    /* background: #ecebeb; */
    /*color: #a10e0e;*/
    border: solid 1px #777575;
    padding: 0;
    cursor: pointer;
    font-size: 10px;
    font-weight: 600;
    border-radius: 100px;
    z-index: 18;
}



.transparent-button {
    position: absolute;
    bottom: 3.5rem; /* добавь если кнопка прилипает к верху */
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    right: 0;
    background-color: transparent;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    font-size: 16px;
    padding: 1px;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    z-index: 12;
}
.transparent-button:hover {
    /*background-color: #ddd;*/
    border: 1px solid #ddd;
    /* Меняем цвет при наведении */
}

.transparent-button:active {
    border: 1px solid #015050;
    /*color: */
}


.transparent-button:focus {
   /*transform: scale(1.1);*/
    background-color: #ecebeb;
}

.spinner img {
  animation: spin 1s linear infinite;
  vertical-align: middle;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.blink {
  animation: blink-fade 1s ease-in-out infinite;
}

@keyframes blink-fade {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}



.floating-button {
    position: absolute;
    bottom: 2rem; /* добавь если кнопка прилипает к верху */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    left: 1rem;
    color: #777575;
    background-color: transparent;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    padding: 1px;
    width: 100px;
    height: 30px;
    margin-right: 10px;
    z-index: 12;
    border: 1px solid #ddd;
}

.floating-button:hover {
    /*background-color: #ddd;*/
    border: 1px solid #2c2c2c;
    /* Меняем цвет при наведении */
}

.floating-button:active {
    border: 1px solid #015050;
    /*color: */
}


.floating-button:focus {
   /*transform: scale(1.1);*/
    background-color: #ecebeb;
}



/*конец футера    */



/*переключение на тёмную тему*/
[data-theme="dark"] {

    #sidebar {
      background-color: rgba(44, 44, 44, 0.62);
        color: #f0f0f0;
    }
    #sidebar >button {
     color: #f0f0f0;
    }

    #open-menu-btn {
     color: #f0f0f0;
    }
    
    #close-menu-btn {
     color: #f0f0f0;
    }
    
    
    .main-header {
     /*background-color: rgba(44, 44, 44, 0.62);*/
        color: #f0f0f0;
    }
    .query-body {
        background-color: #015050;
        color: #f0f0f0;
    }

    .response-body {

        background-color: rgb(9, 9, 9);
        color: #f0f0f0;
    }

    #main{
        background-color: rgba(44, 44, 44, 0.62);
        color: #c2c7d0;
    }



    .main-footer{
        background-color: #222;
        color: #f0f0f0;
    }
}

/*конец пеереключения на тёмную тему*/


.container-icons {
display: flex;
justify-content: space-around; /* Распределяет элементы по горизонтали */
align-items: center; /* Выравнивает элементы по вертикали */
}

.item {
flex:1; /* Элементы будут занимать равное пространство */
align-items: center;
margin: 15px; /* Отступы между элементами */
}



    /* 1️⃣ Большие экраны (от 1578px и меньше) */
    @media (max-width: 1578px) {
        .container-main {
            max-width: 1400px;
            font-size: 115%;
            padding-right: 3rem;
            padding-left: 3rem;
            margin-right: var(--container-marg);
            margin-left: var(--container-marg);
        }
        
        /* .user-info {
            display: flex;
        }
        .user-info-small {
            display: none;
        } */
    }

    /* 2️⃣ Средние экраны (от 1280px и меньше) */
    @media (max-width: 1280px) {
        .container-main {
            max-width: 1200px;
            font-size: 100%;
            padding-right: 2rem;
            padding-left: 2rem;
            margin-right: var(--container-marg);
            margin-left: var(--container-marg);
        }
        /* .user-info {
            display: flex;
        }
        .user-info-small {
            display: none;
        } */
    }

    /* === АДАПТАЦИЯ ДЛЯ СРЕДНИХ ЭКРАНОВ === */
    @media (max-width: 1024px) {
        /* Скрываем меню за левым краем */
        #sidebar {
            position: fixed;
            font-size: 100%;
            top: 0;
            left: 0;
            height: 100%;
            width: 250px; /* Фиксированная ширина */
            transform: translateX(-100%);
            /*box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);*/
        }
        

        /* Показываем кнопку открытия меню */
        #open-menu-btn {
            display: block;
        }

        .main-header {
           top: 1vh;
        }

        .container-main {
            max-width: 1000px;
            font-size: 90%;
            padding-right: 5px;
            padding-left: 5px;
            margin-right: var(--container-marg);
            margin-left: var(--container-marg);
        }
        
        
        /* .user-info {
            display: none;
        }
        .user-info-small {
            display: flex;
        
        } */

        .code-body {

            font-size: 14px; /* 🔹 Чуть уменьшен размер для лучшей читабельности */

        }

    }
    /* 4️⃣ Планшеты (от 768px и меньше) */
    @media (max-width: 768px) {
        .container-main {
            max-width: 700px;
            font-size: 95%;
            padding-right: 1rem;
            padding-left: 1rem;
            margin-right: 5px;
            margin-left: 5px;
        }
         /* .user-info {
            top: 0;
            font-weight:1rem;
            width: 2rem;
            height: 2rem;
                 } */
        /* .user-info-small {
            display: flex;
        }  */

        .code-body {

            font-size: 13px; /* 🔹 Чуть уменьшен размер для лучшей читабельности */

        }
        .image-wrapper {
        flex-direction: column;
        align-items: center;
    }

        .image-wrapper-img {
            height: auto;
            max-width: 100%;
            margin-left: 0;
        }
    }
    /* 5️⃣ Мобильные устройства (от 576px и меньше) */
    @media (max-width: 576px) {
        .container-main {
            max-width: 100%;
            font-size: 100%;
            padding-right: 1rem;
            padding-left: 1rem;
            margin-right: 2px;
            margin-left: 2px;
            margin-bottom: 10px;
        }
        .copy-button {
            top: 5px;
        }
        
       /*  .user-info {
           top: 0;
           font-weight:1rem;
           width: 2rem;
           height: 2rem;
       }
        */
        /* .user-info-small {
            display: flex;
        } */
        
        .query-body {
        
        max-width: unset;

    }

        .code-body {

            font-size: 11px; /* 🔹 Чуть уменьшен размер для лучшей читабельности */
            /*line-height: 22px; !* 🔹 Оптимизировано расстояние между строками *!*/

        }
    }

@media (hover: none) {
  .delete-chat {
    opacity: 1;
  }
}

.to-top {
  position: fixed;
  right: 16px;
  bottom: calc(140px + env(safe-area-inset-bottom, 0px));
  width: 48px; height: 48px;
  border-radius: 9999px;
  display: grid; place-items: center;
  background: #afabab; color: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  opacity: 0; transform: translateY(12px) scale(.95);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 999;
}
.to-top.show {
  opacity: 1; transform: translateY(0) scale(1);
  pointer-events: auto;
}
.to-top:active { transform: scale(.96); }
.to-top:focus-visible { outline: 2px solid #4f8cff; outline-offset: 3px; }
