body #chatList li a:hover {
    background: linear-gradient(354deg, #4491fe 0%, #4491fe 35%, #12a0ff 100%);
    color: #535353;
}

body .message.user-message {
    background-color: #578bd5 !important;
}
.toor .namert .avatarr img {
    height: -webkit-fill-available;
}
.contact-pair a {
    color: #333;
}
 #chatSidebar::-webkit-scrollbar {
  width: 5px;               /* ширина scrollbar */
}
#chatSidebar::-webkit-scrollbar-track {
  background: #121212;        /* цвет дорожки */
}
#chatSidebar::-webkit-scrollbar-thumb {
  background-color: #707070;    /* цвет плашки */
  border-radius: 20px;       /* закругления плашки */
  border: 3px solid #707070;  /* padding вокруг плашки */
}
.message.user-message {
    background-color: #375664!important;
}
/* Общие стили для CRM */
.crm-container {
display: flex;
flex-direction: column;
background-color: #fff;
color: #222;
padding: 20px;
}
body #settingsModal {
    overflow-y: auto;
    height: 72vh;
}
.crm-header {
background-color: #f5f5f5;
color: #222;
padding: 10px;
text-align: center;
border-bottom: 1px solid #ddd;
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}

/* Горизонтальное меню */
.crm-menu {
background-color: #e9ecef;
border-radius: 5px;
margin-bottom: 20px;
}

.crm-menu ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
}

.crm-menu li {
margin: 0 10px;
}

.crm-menu a {
text-decoration: none;
color: #495057;
padding: 10px 15px;
display: block;
border-radius: 5px;
transition: background-color 0.2s ease, color 0.2s ease;
}

.crm-menu a:hover {
background-color: #ced4da;
color: #212529;
}

.crm-menu a.active {
background-color: #adb5bd;
color: #212529;
}

/* Основная область */
.crm-main {
flex-grow: 1;
padding: 10px;
background-color: #fff;
}

/* Таблица заказов */
.orders-table {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
}

.orders-table th,
.orders-table td {
border: 1px solid #dee2e6;
padding: 8px;
text-align: left;
font-size: 14px;
color: #212529;
background-color: #fff;
}

.orders-table th {
background-color: #e9ecef;
font-weight: bold;
}

/* История заказа */
.order-history {
padding: 10px;
border: 1px solid #dee2e6;
margin-bottom: 10px;
background-color: #f8f9fa;
border-radius: 5px;
}

.history-message {
margin-bottom: 5px;
padding: 8px;
border-radius: 5px;
word-wrap: break-word;
}

.client-message {
background-color: #dee2e6;
color: #212529;
}

.manager-message {
background-color: #0d6efd; /* Bootstrap primary blue */
color: #fff;
}

/* Кнопка "Создать заказ" */
.create-order-button,
.blue-button {
padding: 10px 20px;
background-color: #0d6efd;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.2s ease;
display: inline-block;
height: 33px;
line-height: 17px;
text-decoration: none;
}

.create-order-button:hover,
.blue-button:hover {
background-color: #084298;
}

/* Стили для модального окна создания/редактирования заказа */
.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.4); /* затемнение */
}

.modal-content {
background-color: #fff;
margin: 10% auto;
padding: 20px;
border: 1px solid #ddd;
width: 80%;
max-width: 500px;
border-radius: 5px;
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
position: relative;
}

.close {
color: #6c757d;
float: right;
font-size: 28px;
font-weight: bold;
cursor: pointer;
transition: color 0.2s ease;
}

.close:hover,
.close:focus {
color: #212529;
text-decoration: none;
}

.modal-content label {
display: block;
margin-bottom: 5px;
color: #212529;
font-weight: 600;
}

.modal-content input[type="text"],
.modal-content input[type="date"],
.modal-content textarea,
.modal-content select {
width: 100%;
padding: 8px;
margin-bottom: 10px;
border: 1px solid #ced4da;
border-radius: 4px;
box-sizing: border-box;
font-size: 14px;
color: #212529;
background-color: #fff;
transition: border-color 0.2s ease;
}

.modal-content input[type="text"]:focus,
.modal-content input[type="date"]:focus,
.modal-content textarea:focus,
.modal-content select:focus {
outline: none;
border-color: #0d6efd;
box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.modal-content button {
background-color: #0d6efd;
color: white;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.2s ease;
}

.modal-content button:hover {
background-color: #084298;
}

/* Кнопка "Добавить ответ" в таблице */
.add-response-button {
background: none;
border: none;
cursor: pointer;
padding: 0;
margin-left: 5px;
font-size: 16px;
color: #0d6efd;
line-height: 1;
}

.add-response-button:hover {
color: #084298;
}

/* Кнопки в карточке заказа */
.back-button, .print-button, .edit-order-button {
background-color: #6c757d;
color: white;
border: none;
padding: 9px 12px;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.2s ease;
margin-left: 10px;
display: flex;
align-items: center;
}

.back-button i,
.print-button i,
.edit-order-button i {
margin-right: 5px;
}

.back-button:hover,
.print-button:hover,
.edit-order-button:hover {
background-color: #5a6268;
}

/* Карточка заказа */
.order-details {
display: none;
margin-top: 20px;
background-color: #f8f9fa;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
overflow: hidden;
color: #212529;
}

.order-card {
padding: 20px;
}

.order-card-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 15px;
}

.order-card-actions {
display: flex;
align-items: center;
}

.order-card-row {
display: flex;
margin-bottom: 10px;
color: #212529;
}

.order-card-row .label {
font-weight: bold;
width: 150px;
margin-right: 10px;
}

.response-container {
display: flex;
align-items: center;
margin-bottom: 10px;
}

.response-container span {
flex-grow: 1;
padding: 8px;
border-radius: 4px;
background-color: #e9ecef;
color: #212529;
}

.add-response-button {
margin-left: 10px;
padding: 8px 12px;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.2s ease;
background-color: #0d6efd;
color: white;
border: none;
}

.add-response-button:hover {
background-color: #084298;
}

#orderHistoryContainer {
margin-top: 20px;
padding: 10px;
border-radius: 8px;
background-color: #e9ecef;
}

.history-message {
padding: 10px;
border-radius: 5px;
margin-bottom: 5px;
word-wrap: break-word;
color: #212529;
}

.client-message {
background-color: #dee2e6;
color: #212529;
}

.manager-message {
background-color: #0d6efd;
color: #fff;
}

#filesList {
margin-top: 10px;
}

#filesList a {
color: #0d6efd;
text-decoration: none;
margin-right: 10px;
}

#filesList a:hover {
text-decoration: underline;
}

.upload-files-container {
display: flex;
align-items: center;
margin-top: 10px;
}

/* Мелкий текст в таблицах */
#response th,
#response td {
font-size: 12px;
}

@media (max-width:980px) {
    #settingsButton {
    right: 39px !important;
}
}
.spinner-container {
    display:none;
    background-color: #707070;
    position: fixed;
    width: 100%;
    height: 100vh;
    padding: 25% 23%;
    z-index: 9999;
    opacity: 0.8;
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    }
/* Кнопка меню */
.menu-button {
position: fixed; /* Или absolute, если нужно относительное позиционирование */
top: 20px; /* Отступ сверху */
left: 20px; /* Отступ слева */
background-color: #707070;
color: white;
border: none;
padding: 10px 15px;
font-size: 16px;
cursor: pointer;
z-index: 1001; /* Чтобы кнопка была поверх других элементов */
border-radius: 5px;
}

/* Затемнение фона */
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
z-index: 999999; /* Под меню, но над остальным контентом */
display: none; /* Скрыто по умолчанию */
justify-content: center;
align-items: center;
}

/* Контейнер меню */
.menu {
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
text-align: center;
z-index: 1001; /* Над затемнением */
width: 80%; /* Ширина меню */
max-width: 400px; /* Максимальная ширина меню */
position: relative; /* Для крестика */
}

/* Пункты меню */
.menu ul {
list-style: none;
padding: 0;
margin: 0;
}

.menu li {
padding: 10px 0;
border-bottom: 1px solid #eee; /* Разделители между пунктами */
}

.menu li:last-child {
border-bottom: none;
}

.menu a {
text-decoration: none;
color: #707070;
display: block; /* Делаем ссылку блочным элементом для заполнения всей области li */
padding: 10px; /* Добавляем отступы вокруг текста ссылки */
transition: background-color 0.2s ease; /* Плавный переход цвета фона при наведении */
}

.menu a:hover {
background-color: #f0f0f0;
}


/* Крестик */
.close-button {
position: absolute;
top: 10px;
right: 10px;
background-color: transparent;
border: none;
font-size: 20px;
color: #707070;
cursor: pointer;
}

/* Анимация открытия/закрытия (пример) */
.menu.closing {
animation: fadeOut 0.3s forwards; /* При закрытии */
}

@keyframes fadeIn {
from { opacity: 0; transform: scale(0.8); }
to { opacity: 1; transform: scale(1); }
}

@keyframes fadeOut {
from { opacity: 1; transform: scale(1); }
to { opacity: 0; transform: scale(0.8); }
}

.menu.opening {
animation: fadeIn 0.3s forwards; /* При открытии */
}

/* Адаптивность */
@media (max-width: 768px) {
.menu {
width: 90%;
}
}

/* Существующий код... */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
#userInput {
    margin-right: 7px;
}
@media (max-width: 980px) {
    body .logo1 img {
              position: fixed;
        top: 3px!important;
        width: 135px;
        left: 50%;
        z-index: 9;
        padding-left: 7px;
        padding-right: 8px;
        height: 35px;
        margin-left: -40px!important;
    }
}
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4; /* Светлый фон */
    color: #707070; /* Темный текст */
    display: flex;
    flex-direction: column;
    height: 100vh;
}

h1 {
    text-align: center;
    margin: 20px 0;
    display: none;
}
   
/* Добавьте стили для таблицы */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #4491fe; /* Синий фон для заголовков */
    color: white;
}

tr:hover {
    background-color: #e0e0e0; /* Светло-серый фон при наведении */
}
.dashboard-card i {
    color: #4491fe!important;
}
.dashboard-card:hover {
    color: #4491fe!important;
}
.crm-content button {
    background: #4491fe!important;
}
.message.user-message {
background-color: #4491fe;
    /* padding: 7px 14px 6px 9px; */
    border-bottom: 0px #6e6d6d solid !important;
    padding-bottom: 12px !important;
    color: #ffffff !important;
    margin-top: 10px!important;
    font-size: 15px;
    width: 90%;
    margin-left: 10%;
    padding: 7px 14px 6px 9px!important;
    border-radius: 13px!important;
    border-bottom-right-radius: 0px!important;
}
.message.ai-message {
background-color: #404040;
    width: 90%;
    /* padding: 7px 14px 6px 9px; */
    border-bottom: 0px #6e6d6d solid!important;
    padding-bottom: 12px!important;
    color: #ffffff!important;
    margin-top: 10px!important;
    font-size: 15px;
    padding: 7px 14px 6px 9px!important;
    border-radius: 13px!important;
    border-bottom-left-radius: 0px!important;
}
.tyyt {
        background-color: #4491fe;
        color:#fff;
        padding: 8px 9px 8px 6px;
        border-radius: 20px;
    }
    .message.user-message {
  word-break: break-word;
    width: fit-content!important;
    margin-left: auto!important;
    }
     .message.ai-message {
  word-break: break-word;
    width: fit-content!important;
    }
          .namert {
        height: 22px;
    margin-top: 9px;
    position: absolute;
    /* margin: 0px auto; */
    right: 10px;
    top: 3px;
    z-index: 999;
    width: fit-content;
    }
        @media (max-width: 600px) {
            .namert {
    height: 22px;
    margin-top: 9px;
    position: fixed!important;
    /* margin: 0px auto; */
    right: 10px;
    top: 3px;
    z-index: 999;
    width: fit-content;
    }
             
            .topik {
                position: fixed;
        display: block !important;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 41px;
        background-color: #fff;
        z-index: 9;
            }
            .topik1 {
                 position: fixed;
        display: block !important;
        bottom: 0px;
        left: 0px;
        width: 100%;
        height: 41px;
        background-color: #fff;
        z-index: 9;
            }
            body {
                height:100vh!important;
                overflow: hidden!important;
            }
            body .dsa {
                top: 8px!important;
                color:#000!important;
    left: 5px!important;
    background-color: #fff!important;
    padding: 3px 12px;
    }
    #speakButton {
        display:none!important;
    }
           body #response {
    padding: 130px 1px 208px 7px !important;
    width: 98% !important;
    height: calc(100vh)!important;
    top: 0px!important;
}
            .message.ai-message, .message.user-message {
    font-size: 18px!important;
}
     .dsa {
    position: fixed!important;
    color:#ffffff!important;
    
        background-color: #404040!important;
    }
    body .cart-icon {
    position: fixed!important;
    }
    table, thead, tbody, th, td, tr {
        display: block;
    }
    th {
        display: none; /* Скрываем заголовки на мобильных устройствах */
    }
    tr {
        margin-bottom: 15px;
    }
    td {
        text-align: right;
        padding-left: 50%; /* Отступ для мобильных устройств */
        position: relative;
    }
    td:before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 10px;
        text-align: left;
        font-weight: bold;
    }
    .logo img {
        left: 193px!important;
    }
}
  html body .logo img {
            top: 3px;
        }
.logo img {
    height: 41px;
    margin-top: 9px;
    position: fixed;
    margin: 0px auto;
    left: 0;
    right: 0;
    top: 10px;
}

.toor {
    text-align: center;
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    display: block;
    width: 96%;
}

#chatForm {
    max-width: 1280px!important;
    margin: 0 auto;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 40px;
    left: 27px;
    right: 21px;
    background-color: #ffffff; /* Белый фон для формы */
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Легкая тень */
}

#userInput {
    flex-grow: 1;
    border: 1px solid #dfdfdf; /* Светло-серая граница */
    border-radius: 5px;
    padding: 10px;
    background-color: #f9f9f9; /* Светлый фон поля ввода */
    color: #707070; /* Темный текст */
}
#searchForm {
    max-width: 1280px!important;
    margin: 0 auto;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 40px;
    left: 27px;
    right: 21px;
    background-color: #ffffff; /* Белый фон для формы */
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Легкая тень */
}

#searchInput {
    flex-grow: 1;
    border: 1px solid #dfdfdf; /* Светло-серая граница */
    border-radius: 5px;
    padding: 10px;
    background-color: #f9f9f9; /* Светлый фон поля ввода */
    color: #707070; /* Темный текст */
}
#cabinetButton {
    color: #707070; /* Синий цвет текста */
    text-decoration: unset; /* Убираем подчеркивание */
    font-size: 11px; /* Размер шрифта */
    text-transform: uppercase; /* Преобразуем текст в верхний регистр */
}

/* Стили для кнопок */
button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 10px;
}

button svg {
    width: 24px;
    height: 24px;
    
}

button svg.rotate {
    transform: rotate(180deg); /* Поворачиваем стрелку на 180 градусов */
}

#userInput {
    height: 50px;
    font-size: 18px;
}
#searchInput {
    height: 50px;
    font-size: 18px;
}
/* Адаптивность для мобильных устройств */
@media (min-width: 980px) {
    #response {
        background-color: #ffffff; /* Белый фон для ответа */
    }
}

@media (max-width: 980px) {
    #response {
        width: 95%!important;
    }
    .user-info {
        width: 96% !important;
        margin: 10px auto !important;
        padding: 10px !important;
        background-color: #f9f9f9; /* Светлый фон */
        border-radius: 5px;
    }
    body button {
        padding: 0 3px;
    }
    body #chatForm {
        left: 5px;
        right: 5px;
    }
    #userInput {
        height: 50px;
        font-size: 18px;
        width: calc(100% - 70px); /* Уменьшаем ширину ввода, чтобы учесть ширину кнопок */
    }
    body #searchForm {
        left: 5px;
        right: 5px;
    }
    #searchInput {
        height: 50px;
        font-size: 18px;
        width: calc(100% - 70px); /* Уменьшаем ширину ввода, чтобы учесть ширину кнопок */
    }
    #response img {
        width: 100%!important;
    }
}

#response h3, #response h2 {
    margin-top: 30px;
}

#response {
    padding: 20px!important;
    border-radius: 10px;
    max-width: 1280px!important;
    margin: 0 auto;
    width: 100%;
    padding: 48px;
    height: calc(100vh - 156px);
    position: relative;
    top: 46px;
    overflow-x: hidden;
    overflow-y: auto;
}

.message.user-message {
    text-align: right;
    border-bottom: 1px #ccc solid; /* Светло-серая граница */
    padding-bottom: 12px;
    color: #707070; /* Темный текст */
    margin-top: 10px;
    font-size: 15px;
}

.message.ai-message {
    overflow-wrap: break-word;
    text-align: left;
    border-bottom: 1px #ccc solid; /* Светло-серая граница */
    padding-bottom: 12px;
    color: #707070; /* Темный текст */
    margin-top: 10px;
    font-size: 15px;
}

/* Стили для индикатора загрузки */
#loadingIndicator {
    display: none; /* Скрываем индикатор по умолчанию */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 8px solid #dfdfdf; /* Светло-серая граница */
    border-top: 8px solid #4491fe; /* Синий цвет */
    border-radius: 50%;
    width: 50px;
    margin-left: -25px;
    margin-top: -25px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.sound-icon {
    position: fixed;
    top: 20px;
    left: 20px;
    cursor: pointer;
    color: #4491fe; /* Синий цвет иконки */
    transition: color 0.3s;
}

.sound-icon.active {
    color: red; /* Цвет иконки при отключении озвучки */
    text-decoration: line-through; /* Перечеркивание */
}

.logout-icon {
    position: fixed;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    transition: transform 0.2s;
}

.logout-icon:hover {
    transform: scale(1.1);
}

.dsa {
    position: absolute;
    left: 0px;
    top: 15px;
    z-index: 990;
    color: #707070; /* Синий цвет текста */
    text-decoration: unset;
     font-size: 11px;
    line-height: 19px;
    text-transform: uppercase;

}

#response::-webkit-scrollbar {
    width: 5px; /* ширина scrollbar */
}

#response::-webkit-scrollbar-track {
    background: #f4f4f4; /* цвет дорожки */
}

#response::-webkit-scrollbar-thumb {
    background-color: #4491fe; /* цвет плашки */
    border-radius: 20px; /* закругления плашки */
    border: 3px solid #f4f4f4; /* padding вокруг плашки */
}

body::-webkit-scrollbar {
    width: 5px; /* ширина scrollbar */
}

body::-webkit-scrollbar-track {
    background: #f4f4f4; /* цвет дорожки */
}

body::-webkit-scrollbar-thumb {
    background-color: #4491fe; /* цвет плашки */
    border-radius: 20px; /* закругления плашки */
    border: 3px solid #f4f4f4; /* padding вокруг плашки */
}

#response img {
    padding-top: 15px;
    padding-bottom: 15px;
}

#settingsModal {
    display: none; /* Скрываем модальное окно по умолчанию */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff; /* Белый фон */
    padding: 20px;
    border: 1px solid #dfdfdf; /* Светло-серая граница */
    z-index: 1000;
    border-radius: 8px; /* Закругленные углы */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Легкая тень для модального окна */
    width: 90%; /* Ширина модального окна */
    max-width: 400px; /* Максимальная ширина для больших экранов */
}

/* Стили для заголовка модального окна */
#settingsModal h2 {
    margin-bottom: 10px; /* Отступ снизу */
    color: #707070; /* Темный цвет заголовка */
}

/* Стили для полей ввода */
#settingsModal input[type="text"],
#settingsModal input[type="password"],
#settingsModal input[type="number"] {
    width: 100%; /* Полная ширина */
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #dfdfdf; /* Светло-серая граница */
    border-radius: 4px;
    background-color: #f9f9f9; /* Светлый фон полей ввода */
    color: #707070; /* Темный текст */
}

/* Стили для кнопок в модальном окне */
#settingsModal button, .admin-button {
    background-color: #4491fe; /* Синий цвет кнопок */
    color: white;
    border: none;
    font-size: 15px;
    text-decoration: unset;
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

#settingsModal button:hover, .admin-button:hover {
    background-color: #0056b3; /* Цвет кнопки при наведении */
}

/* Стили для кнопок "Добавить в корзину" */
.add-to-cart, .edit-button {
    background-color: #4491fe; /* Синий цвет кнопок */
    color: white; /* Цвет текста */
    border: none;
    font-size: 11px;
    height: 16px;
    line-height: 0px;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    width: 75px;
}

.add-to-cart:hover, .edit-button:hover {
    background-color: #0056b3; /* Цвет кнопки при наведении */
}

.svyaz {
    background-color: #4491fe; /* Синий цвет кнопок */
    color: white; /* Цвет текста */
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%; /* Полная ширина кнопок */
}

.svyaz:hover {
    background-color: #0056b3; /* Цвет кнопки при наведении */
}

/* Стили для кнопок "Оформить заказ" */
#checkoutButton {
    background-color: #4491fe; /* Синий цвет кнопок */
    color: white; /* Цвет текста */
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    width: 150px; /* Полная ширина кнопок */
}

#checkoutButton:hover {
    background-color: #0056b3; /* Цвет кнопки при наведении */
}

.hjkd {
    width: 100%;
    text-align: center;
}

#rejj {
    position: relative;
    text-align: right;
    width: 100%;
    display: block;
    margin-bottom: -10px;
    margin-top: 10px;
    font-size: 11px;
    text-transform: uppercase;
    color: #4491fe; /* Синий цвет текста */
    text-decoration: unset;
}

.cart-icon {
    position: fixed;
     top: 16px!important;
    right: 20px;
    cursor: pointer;
    z-index: 1000;
}

#cartCount {
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    position: absolute;
    top: -10px;
    right: -10px;
}

.user-info {
    width: 50%;
    margin: 20px auto;
    padding: 41px;
    background-color: #f9f9f9; /* Светлый фон */
    border-radius: 5px;
}

.user-info h2 {
    text-align: center;
}

.user-info label {
    display: block; /* Отображаем метки как блочные элементы */
    margin-top: 10px; /* Отступ сверху */
    color: #707070; /* Темный цвет текста */
}

.user-info input {
    width: 100%; /* Полная ширина */
    padding: 10px; /* Отступ внутри поля */
    margin-top: 5px; /* Отступ сверху */
    border: 1px solid #dfdfdf; /* Светло-серая граница */
    border-radius: 4px; /* Закругленные углы */
    background-color: #f9f9f9; /* Светлый фон полей ввода */
    color: #707070; /* Темный текст */
}

/* Стили для выезжающей панели с чатами */
#chatSidebar {
    position: fixed;
    top: 0;
    left: -250px; /* Скрываем панель за пределами экрана */
    width: 250px;
    height: 100%;
    background-color: #ffffff; /* Белый фон */
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1); /* Легкая тень */
    transition: left 0.3s ease; /* Плавный переход */
    z-index: 1000; /* Поверх других элементов */
    overflow-y: auto; /* Прокрутка при необходимости */
}
.user-info a {
    color:#707070;
}
#chatToggle {
    opacity: 0.8;
}
#chatToggle:hover {
    opacity: 0.8;
}
/* Кнопка для открытия панели */
#chatToggle {
    position: fixed;
    top: 50%;
    left: 0px;
    background-color: #707070; /* Синий фон */
    color: white;
    border: none;
    margin-left: 0px;
    transition: left 0.3s ease; /* Плавный переход */
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
}
/* Стили для списка чатов */
#chatList1 {
    list-style: none; /* Убираем маркеры списка */
    padding: 0px 10px;
    margin: 0;
}

#chatList1 li {
    padding: 4px;
    border-bottom: 1px solid #ddd; /* Светло-серая граница */
    cursor: pointer;
    color: #707070; /* Темный текст */
}
/* Стили для списка чатов */
#chatList {
    list-style: none; /* Убираем маркеры списка */
    padding: 10px;
    margin: 0;
}

#chatList li {
    padding: 4px;
    border-bottom: 1px solid #ddd; /* Светло-серая граница */
    cursor: pointer;
    color: #707070; /* Темный текст */
}

/* Стили для поиска пользователей */
#searchUser {
    width: 100%;
    padding: 10px;
    border: 1px solid #dfdfdf; /* Светло-серая граница */
    border-radius: 4px;
    background-color: #f9f9f9; /* Светлый фон поля ввода */
    color: #707070; /* Темный текст */
    margin-bottom: 10px; /* Отступ снизу */
}

/* Стили для контейнера чата */
#chatContainer {
    display: flex;
    flex-direction: column;
    height: 100vh; /* Полная высота экрана */
    transition: margin-left 0.3s ease; /* Плавный переход */
}
body .create-order-button,body  .blue-button {
    background-color: #4491fe!important;
}
#chatList li a:hover {
    background:linear-gradient(354deg, #4491fe 0%, #285572 35%, #1c5c87 100%);/* Цвет кнопки */
    color: #fff;
}
.notification-indicator {
    position: absolute;
    right: 18px;
}
#chatList li a {
    /*background-color: #f0f0f0; *//* Светлый фон для ссылок */
    color: #707070; /* Синий цвет текста */
    border: none;
    text-decoration: unset;
    border-radius: 4px;
    padding: 4px;
    cursor: pointer;
    margin-left: 0px;
    width: 100%;
    display: block;
    text-align: center;
}
#chatList1 li a:hover {
    background-color: #4491fe; /* Цвет кнопки */
    color: #fff;
}

#chatList1 li a {
    background-color: #f0f0f0; /* Светлый фон для ссылок */
    color: #707070; /* Синий цвет текста */
    border: none;
    text-decoration: unset;
    border-radius: 4px;
    padding: 4px;
    cursor: pointer;
    margin-left: 0px;
    width: 100%;
    display: block;
    text-align: left;
    padding-left: 40px;
}
.no-border {
    border-bottom: 0px!important; /* Убираем нижнюю границу */
}
.fa-solid, .fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 20px;
}
#toggleButtontre .fa-solid, #toggleButtontre  .fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 13px;
}
 .fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
}
#cartCount {
    padding: 1px 4px;
    font-size: 9px;
    top: -8px;
    right: -8px;
}
.date-header {
    width: 100%;
    text-align: center;
    font-size: 13px;
    color: #787878;
    margin-top: 13px;
}

/* Стили для таблицы */
#response table {
    width: 100%;
    border-collapse: collapse; /* Убираем двойные границы */
}

#response th, #response td {
    padding: 4px 4px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 15px;
}

#footer {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    display: block;
    bottom: 0px;
    font-size: 12px;
    color: #666;
    left: 11px;
    bottom: 11px;
}

#toggleButtontre {
    margin-top: 2px;
    padding: 4px;
    background-color: #4491fe; /* Синий фон */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    bottom: 8px;
    right: 21px;
    display: block;
    float: right;
}


input:-webkit-autofill {
    -webkit-box-shadow:0 0 0 50px white inset; /* можно изменить на любой вариант цвета */
    -webkit-text-fill-color: #707070;
}
#requestPermissionButton {
margin-top: 2px;
    padding: 4px;
    background-color: #484848;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    bottom: 8px;
    right: 33px;
    display: block;
    float: right;
    }
    
 #chatToggle1 {
margin-top: 2px;
    padding: 4px;
    background-color: #484848;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    }   
    
    
    
    
    
    
    