/*
 * Главный контейнер чата. Тёмный фон, скруглённые углы.
 */
.echat-area {
    background: #0f1120;
    position: relative;
    height: 100%;
    border: none;
    border-radius: 0px;
    overflow: hidden;
}
/*
 * Список сообщений. Абсолютное позиционирование, запрет на горизонтальный скролл.
 */
.echat-msgs {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 60px;
    overflow-y: auto;
    overflow-x: hidden;           /* убираем горизонтальную прокрутку */
    padding: 10px;
    background: url("../images/chat_bg_dark.jpg") center/cover no-repeat, #0f1120;
}

/* Поле ввода */
.echat-input {
    height: 40px;
    width: calc(100% - 50px);
    margin: 10px 0;
    resize: none;
    border-radius: 20px;
    border: none;
    background: #251b34;
    overflow: hidden;
    padding: 8px 40px 8px 15px;
    color: #fff;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
    transition: box-shadow 0.2s ease;
}
.echat-input::placeholder { color: #7a6b8b; }
.echat-input:focus { outline: none; }

/* Контейнер для поля ввода и кнопок */
.echat-te {
    position: absolute;
    display: flex;
    align-items: center;
    bottom: 0;
    left: 4px;
    right: 4px;
}

/* Кнопка отправки */
.echat-send {
    background: linear-gradient(135deg, #0066ff, #0066ff);
    border: none;
    height: 40px;
    width: 40px;
    border-radius: 10%;
    margin-left: 8px;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    transition: background 0.2s ease, transform 0.2s ease;
}
.echat-send:hover {
    background: linear-gradient(135deg, #0066ff, #0066ff);
    transform: scale(1.05);
}

/* Кнопка выбора смайликов/стикеров */
.echat-smile {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: #0066ff;
    color: #fff;
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.echat-smile:hover {
    background: #0066ff;
    transform: translateY(-50%) scale(1.05);
}

/* Вкладки для эмодзи и стикеров */
.echat-tabs {
    display: flex;
    justify-content: space-around;
    background: #0480be;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 4px;
}
.echat-tab {
    flex: 1;
    padding: 8px 0;
    cursor: pointer;
    font-size: 13px;
    color: #bdb6d3;
    text-align: center;
    border-bottom: 2px solid transparent;
}
.echat-tab.active {
    background: transparent;
    color: #fff;
    border-bottom-color: #ffe010;
}

/* Список эмодзи: сетка с отступами */
.echat-emoji {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px;
    height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    align-content: flex-start;
    justify-content: flex-start;
    font-size: 20px;
}

/* Окно выбора эмодзи/стикеров */
.echat-emo-stick {
    position: absolute;
    top: auto;
    bottom: 70px;        /* чуть выше панели ввода */
    left: 4px;
    right: 4px;
    width: calc(100% - 8px);
    height: 240px;
    background: #0480be;
    box-shadow: 0 12px 24px rgba(0,0,0,0.6), 0 0 2px rgba(0,0,0,0.6);
    border-top: 3px solid #ffe010;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transition: all 0.2s ease;
    z-index: 2;
}
.echat-emo-stick.fade { opacity: 1; visibility: visible; }

/* Элементы эмодзи */
.echat-emo-stick span {
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
}
.echat-emo-stick span:hover {
    background: #493064;
    border-radius: 3px;
}

/* Контейнер стикеров (две колонки) */
.echat-sticker {
    display: none;
    height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px;
}
.echat-sticker img {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
    height: auto;
    padding: 0;
    border-radius: 4px;
    cursor: pointer;
}
.echat-sticker img:hover { background: #3d274e; }

/* Сообщение: контейнер для аватара и текста */
.echat-msg {
    display: flex;
    align-items: flex-start;
    margin: 14px 8px;
    position: relative;
}
.echat-foto {
    overflow: hidden;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}
.echat-foto img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Имя и дата */
.echat-name {
    font-size: 13px;
    font-weight: 600;
    color: #e0daf9;
    display: block;
    margin-bottom: 2px;
}
/* Дата/время сообщения */
.echat-date {
    font-size: 10px;
    color: #9b95b9;
    /* Абсолютное позиционирование: дата в правом нижнем углу сообщения */
    position: absolute;
    right: 12px;
    bottom: 4px;
    display: inline-block;
}
.echat-date::before {
    content: "";   /* точка-разделитель больше не нужна */
    margin-left: 0;
}

/* Пузырь сообщения */
.echat-text-area {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-top: 7px;
    margin-left: 10px;
    padding: 10px 14px 18px 14px; /* добавили 18px снизу */
    border-radius: 12px 12px 12px 0;
    background: linear-gradient(135deg, rgba(167,149,30,1), rgba(27,127,204,0.8));
    color: #f5f5f7;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.echat-text-area::after {
    content: "";
    position: absolute;
    left: -8px;
    top: 14px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-right: 8px solid rgba(154,145,44,1);
    border-bottom: 8px solid transparent;
}

/* Изображения в сообщениях (стикеры): масштабируются по ширине пузыря */
.echat-text img {
    max-width: 40%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
}
.echat-text {
    font-size: 15px;
    margin-top: 2px;
}

.echat-text .emoji {
    /* увеличиваем только эмодзи в тексте сообщений */
    font-size: 20px;
}


/* Кнопки действий (видны при наведении) */
.echat-action {
    display: none;
    gap: 4px;
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 11px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.echat-action div:hover {
    cursor: pointer;
    text-decoration: underline;
}
.echat-msg:hover .echat-action {
    display: flex;
    font-size: 11px;
}

/* Сообщения об ошибках */
.echat-err {
    background: beige;
    margin: 6px 8px 0;
    padding: 4px 6px;
}

/* Тёмная тема: аналогичные правила, цвета остаются такими же. */
.dt .echat-area { background: #0f1120; border-radius: 8px; overflow: hidden; }
.dt .echat-msgs { background: url("../images/chat_bg_dark.jpg") center/cover no-repeat, #0f1120; }
.dt .page-tv__chat { background-color: #31373b; }
.dt .echat-send { background: linear-gradient(135deg, #ff4c60, #ff6b7b); border: none; color: #fff; }
.dt .echat-name { color: #e0daf9; }
.dt .echat-msgs, .dt .echat-input, .dt .echat-send { border: none; }
.dt .echat-input { background: #251b34; color: #fff; }
.dt .echat-date { color: #9b95b9; display: block; }
.dt .echat-date::before { content: " • "; margin-left: 4px; }
.dt .echat-action { background: rgba(0,0,0,0.6); color: #fff; }
.dt .echat-emo-stick {
    position: absolute;
    top: auto;
    bottom: 70px;
    left: 4px;
    right: 4px;
    width: calc(100% - 8px);
    height: 240px;
    background: #2f1e40;
    box-shadow: 0 12px 24px rgba(0,0,0,0.6), 0 0 2px rgba(0,0,0,0.6);
    border-top: 3px solid #ff4c60;
    border-radius: 8px;
    overflow-y: auto;
}
.dt .echat-tabs { background: #251b34; border-bottom: 1px solid rgba(255,255,255,0.1); }
.dt .echat-tab.active { background: transparent; color: #fff; border-bottom-color: #ff4c60; }
.dt .echat-emo-stick span:hover { background: #493064; }
.dt .echat-sticker img:hover { background: #3d274e; }
.dt .echat-text-area {
    position: relative;
    display: inline-block;
    width: 66%;
    margin-top: 7px;
    margin-left: 10px;
    padding: 10px 14px;
    border-radius: 12px 12px 12px 0;
    background: linear-gradient(135deg, rgba(105,30,140,0.9), rgba(59,18,81,0.9));
    color: #f5f5f7;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.dt .echat-text-area::after {
    content: "";
    position: absolute;
    left: -8px;
    top: 14px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-right: 8px solid rgba(105,30,140,0.9);
    border-bottom: 8px solid transparent;
}
