:root {
    --bg-main: #ffffff;
    --bg-sec: #f4f4f4;
    --bg-hover: #e8e8e8;
    --text-main: #111111;
    --text-sec: #888888;
    --accent: #1a1a1a;
    --border: #e0e0e0;
    --danger: #d32f2f;
    --radius: 14px;
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

/* --- КРУТОЙ СКРОЛЛБАР --- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }

/* По умолчанию (Светлая тема) -> делаем ТЕМНЫЙ ползунок */
::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.4); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0, 0, 0, 0.6); }

/* Темная тема -> делаем СВЕТЛЫЙ ползунок */
body.dark-theme ::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.3); }
body.dark-theme ::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.5); }

/* FIX SCREEN */
html, body { 
    width: 100%; height: 100%; margin: 0; padding: 0; overflow: hidden;
    background-color: var(--bg-main); color: var(--text-main); 
    overscroll-behavior: none; -webkit-tap-highlight-color: transparent; 
}

.hidden { display: none !important; }
.screen { display: none; height: 100%; width: 100%; }
.screen.active { display: flex; }

/* --- AUTH (НОВЫЙ ДИЗАЙН) --- */
#auth-screen { justify-content: center; align-items: center; background: var(--bg-main); }
.auth-box { width: 340px; text-align: center; padding: 20px; }
.auth-box h1 { font-weight: 700; font-size: 32px; margin-bottom: 10px; letter-spacing: -1px; }
.auth-subtitle { font-size: 14px; color: var(--text-sec); margin-bottom: 30px; }
.auth-form { display: flex; flex-direction: column; gap: 12px; }

/* Кнопка входа большая */
.btn-auth-action { 
    padding: 14px; background: var(--accent); color: white; width: 100%; 
    font-size: 15px; margin-top: 10px; border-radius: var(--radius);
}
.btn-auth-action:hover { background: #000; transform: scale(1.01); }
.btn-auth-action:active { transform: scale(0.98); }
.btn-auth-action:disabled { background: #ccc; cursor: not-allowed; transform: none; }

/* Переключатель режимов */
.auth-toggle { margin-top: 20px; font-size: 13px; color: var(--text-sec); }
.auth-toggle span { color: var(--text-main); font-weight: 600; cursor: pointer; text-decoration: underline; }

/* ELEMENTS */
input { width: 100%; padding: 14px 16px; background: var(--bg-sec); border: 1px solid transparent; border-radius: var(--radius); font-size: 15px; outline: none; font-weight: 500; transition: 0.2s; }
input:focus { background: #fff; border-color: #ccc; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }

button { cursor: pointer; border: none; border-radius: var(--radius); font-weight: 500; transition: all 0.2s; }
.btn.primary { padding: 12px; background: var(--accent); color: white; width: 100%; }
.btn.primary:hover { background: #000; }
.btn.secondary { padding: 12px; background: var(--bg-sec); color: var(--text-main); width: 100%; }
.btn.secondary:hover { background: var(--bg-hover); }
.btn.danger { width: 100%; padding: 12px; background: transparent; color: var(--danger); border: 1px solid rgba(211, 47, 47, 0.2); }
.btn.danger:hover { background: var(--danger); color: white; }

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;      /* Сделаем чуть больше для удобства */
    height: 44px;
    border-radius: 14px; /* --radius для консистентности */
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    padding: 0; /* Убираем внутренние отступы, SVG сам центрируется */
}

/* Стилизуем сам SVG внутри кнопки */
.icon-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--text-sec); /* Цвет иконки по умолчанию */
    transition: all 0.2s;
}

.icon-btn:hover {
    background-color: var(--bg-sec);
}
.icon-btn:hover svg {
    fill: var(--text-main); /* При наведении иконка становится темнее */
}

/* Микро-анимация при нажатии */
.icon-btn:active {
    transform: scale(0.92);
}

/* Модификатор для основной кнопки (отправка сообщения) */
.icon-btn.primary {
    background-color: var(--accent);
}
.icon-btn.primary svg {
    fill: white; /* Иконка внутри основной кнопки - белая */
}

.icon-btn.primary:hover {
    background-color: #000;
}

.icon-btn.primary:disabled {
    background-color: #e0e0e0; /* Более мягкий цвет для неактивной кнопки */
    cursor: not-allowed;
    transform: none;
}
.icon-btn.primary:disabled svg {
    fill: #a0a0a0; /* Иконка тоже становится серой */
}


/* Старый класс для кнопки "+" нужно удалить или переделать, если он где-то остался */
.btn-circle {
    display: none; /* Скрываем, т.к. заменили на .icon-btn */
}

/* SIDEBAR */
.sidebar { width: 300px; border-right: 1px solid var(--border); display: flex; flex-direction: column; height: 100%; }
.sidebar-header { padding: 20px; display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; }
.actions-group { display: flex; gap: 10px; align-items: center; }

/* AVATARS */
.avatar-base { background-color: #e0e0e0; background-size: cover; background-position: center; position: relative; }
.avatar-base::after {
    content: ''; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center; background-size: 50%; opacity: 0.5;
}
.avatar-base.has-avatar::after { content: none; }
.avatar-small { width: 32px; height: 32px; border-radius: 8px; cursor: pointer; }
.chat-avatar { width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0; }
.avatar-mini-header { width: 36px; height: 36px; border-radius: 10px; }

/* Контейнер для аватарки и статуса */
.chat-avatar-container {
    position: relative; /* Чтобы точка позиционировалась внутри этого блока */
    width: 42px;        /* Размер как у аватарки */
    height: 42px;
    flex-shrink: 0;
}

/* Сама зеленая точка */
.online-badge {
    position: absolute;
    bottom: -1px;       /* Чуть залезает снизу */
    right: -1px;        /* Чуть залезает справа */
    width: 13px;
    height: 13px;
    background-color: #4caf50; /* Сочный зеленый */
    border: 2px solid var(--bg-main); /* Обводка цветом фона (белым), чтобы отделить от фото */
    border-radius: 50%;
    z-index: 5;
}

/* В темной теме обводка должна быть темной */
body.dark-theme .online-badge {
    border-color: var(--bg-sec); /* Или var(--bg-main), смотри как лучше сольется */
}

/* CHAT LIST */
.search-bar { padding: 0 20px 15px; flex-shrink: 0; }
.chat-list { flex: 1; overflow-y: auto; overscroll-behavior-y: contain; -webkit-overflow-scrolling: touch; }
.chat-item { padding: 12px 20px; cursor: pointer; display: flex; align-items: center; gap: 12px; border-left: 3px solid transparent; user-select: none; -webkit-user-select: none; }
.chat-item:hover { background: var(--bg-sec); }
.chat-item.active { background: var(--bg-sec); border-left-color: var(--accent); }
.pinned-icon {
    font-size: 14px;
    margin-right: 4px;
}
.chat-info { flex: 1; min-width: 0; }
.chat-info h4 { font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chat-info p { font-size: 13px; color: var(--text-sec); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 2px; }

/* CHAT AREA */
.chat-area { flex: 1; display: flex; flex-direction: column; position: relative; background: #fff; height: 100%; }
.empty-state { height: 100%; display: flex; justify-content: center; align-items: center; color: var(--text-sec); font-size: 14px; }
.active-chat { display: flex; flex-direction: column; height: 100%; }

.chat-header { padding: 10px 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; height: 60px; flex-shrink: 0; }
.chat-info-clickable { display: flex; align-items: center; gap: 10px; cursor: pointer; padding: 5px 10px; border-radius: 8px; flex: 1; }
.chat-info-clickable:hover { background: var(--bg-sec); }
.header-text { display: flex; flex-direction: column; justify-content: center; }
#current-chat-name { font-weight: 600; font-size: 15px; }
.header-status { font-size: 12px; color: var(--text-sec); }

.messages-container { 
    flex: 1; 
    padding: 25px; 
    overflow-y: auto; 
    display: flex; 
    flex-direction: column; 
    gap: 4px; 
    overscroll-behavior-y: contain; 
    -webkit-overflow-scrolling: touch; 
    overflow-anchor: none; 
    
    /* НОВОЕ: Плавность появления */
    opacity: 1;
    transition: opacity 0.15s ease-in-out;
}

.messages-container.loading {
    opacity: 0;
    pointer-events: none; /* Блокируем скролл и клики пока грузится */
}

/* MESSAGE STYLES */
.message { 
    max-width: 70%; 
    padding: 8px 12px; 
    border-radius: 16px; 
    font-size: 14px; 
    line-height: 1.4; 
    position: relative;
    word-wrap: break-word; 
    overflow-wrap: anywhere; 
}
.message.mine { align-self: flex-end; background: var(--accent); color: white; border-bottom-right-radius: 4px; }
.message.theirs { align-self: flex-start; background: var(--bg-sec); color: var(--text-main); border-bottom-left-radius: 4px; }
.message-name { font-size: 11px; font-weight: 700; margin-bottom: 2px; color: #666; display: block; }
.message.mine .message-name { display: none; }
.message-time { font-size: 9px; margin-left: 4px; float: right; margin-top: 8px; opacity: 0.6; vertical-align: bottom; line-height: 1; }
.message.mine .message-time { color: rgba(255,255,255,0.8); }

.date-separator { text-align: center; margin: 20px 0 10px; position: relative; font-size: 12px; color: #888; font-weight: 500; z-index: 1; }
.date-separator span { background: rgba(0, 0, 0, 0.05); padding: 4px 12px; border-radius: 12px; }

.message.image-msg { background: transparent !important; padding: 0 !important; border: none !important; box-shadow: none !important; position: relative; }
.message.image-msg .message-name { margin-left: 4px; margin-bottom: 4px; text-shadow: 0 1px 2px rgba(255,255,255,0.8); }
.message.image-msg .message-time { position: absolute; bottom: 6px; right: 6px; background: rgba(0, 0, 0, 0.5); color: white !important; padding: 2px 5px; border-radius: 8px; margin: 0; opacity: 1; }
.msg-photo { max-width: 240px; max-height: 320px; border-radius: 14px; display: block; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.15); }

/* --- INPUT AREA С ПРЕДПРОСМОТРОМ --- */
.input-area-container { border-top: 1px solid var(--border); display: flex; flex-direction: column; background: #fff; flex-shrink: 0; }

/* Зона предпросмотра фото */
#preview-area {
    display: flex; gap: 10px; padding: 10px 20px 0; overflow-x: auto; 
    white-space: nowrap; -webkit-overflow-scrolling: touch;
}
#preview-area::-webkit-scrollbar { height: 4px; }
.preview-item {
    position: relative; width: 60px; height: 60px; flex-shrink: 0;
    border-radius: 8px; overflow: hidden; border: 1px solid #eee;
}
.preview-item img { width: 100%; height: 100%; object-fit: cover; }
.preview-remove {
    position: absolute; top: 2px; right: 2px; width: 18px; height: 18px;
    background: rgba(0,0,0,0.6); color: white; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 12px; cursor: pointer;
}

.input-controls {
    padding: 15px 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.input-controls input { margin-bottom: 0; background: var(--bg-sec); height: 46px; }

/* FULLSCREEN VIEWER */
.fullscreen-viewer { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(15px); z-index: 500; display: flex; justify-content: center; align-items: center; animation: fadeIn 0.2s ease; }
.viewer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;  /* <-- Верни эту строку */
    height: 100%; /* <-- И эту тоже */
    gap: 20px;
}
#viewer-img { max-width: 95%; max-height: 95%; object-fit: contain; border-radius: 4px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.viewer-btn-close { position: absolute; top: 20px; left: 20px; color: white; font-size: 40px; background: none; z-index: 510; opacity: 0.8; }
.viewer-menu-container { position: absolute; top: 20px; right: 20px; z-index: 510; }
.viewer-btn-menu { color: white; font-size: 30px; background: none; opacity: 0.8; }
.viewer-nav { 
    color: white; 
    font-size: 50px; 
    font-weight: 200; 
    font-family: 'Inter', sans-serif; 
    background: none; 
    opacity: 0.3; 
    transition: 0.2s; 
    padding: 20px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    cursor: pointer;
    user-select: none;
}
.viewer-nav:hover { opacity: 1; transform: scale(1.1); }

/* СКРЫВАЕМ СТРЕЛКИ НА МОБИЛЬНЫХ (там свайп) */
@media (max-width: 768px) {
    .viewer-nav { display: none !important; }
}
.viewer-nav:hover { opacity: 1; }
.viewer-counter { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: white; opacity: 0.7; font-size: 14px; }

/* MODALS */
.modal { position: fixed; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px); z-index: 100; display: flex; justify-content: center; align-items: center; }
.modal-content { background: white; width: 320px; padding: 30px; border-radius: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); border: 1px solid var(--border); max-height: 90vh; overflow-y: auto; }
.modal-header { display: flex; justify-content: space-between; margin-bottom: 20px; }
.close-btn { background: none; font-size: 24px; color: var(--text-sec); }
.profile-info { text-align: center; margin-bottom: 30px; }

/* ГАЛЕРЕЯ */
.gallery-container { position: relative; width: 140px; height: 140px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
.avatar-xl, .avatar-large { width: 100%; height: 100%; border-radius: 40px; position: relative; transition: 0.2s; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.avatar-xl:hover, .avatar-large:hover { transform: scale(0.98); }
.gallery-nav { display: none !important; }

.profile-actions button { width: 100%; margin-bottom: 10px; }
.settings-form { margin-bottom: 20px; }
.settings-form label { display: block; font-size: 13px; color: var(--text-sec); margin-bottom: 6px; }

/* CROPPER */
.img-container { max-height: 400px; max-width: 100%; overflow: hidden; background: #f0f0f0; border-radius: 12px; }
.img-container img { max-width: 100%; display: block; }

/* MENUS */
.chat-options-container { position: relative; }
.dropdown-menu { 
    position: absolute; 
    top: 40px; 
    right: 0; 
    background: white; 
    
    /* ИЗМЕНЕНИЯ ЗДЕСЬ */
    width: auto;             /* Ширина авто */
    min-width: 180px;        /* Но не меньше этого */
    white-space: nowrap;     /* Запрещаем перенос текста */
    /* ---------------- */
    
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    border-radius: 12px; 
    padding: 6px; 
    z-index: 600; 
    border: 1px solid var(--border); 
}

.context-menu { 
    position: absolute; /* БЫЛО fixed */
    background: white; 
    
    width: auto;             
    min-width: 200px;        
    white-space: nowrap;     
    
    box-shadow: 0 4px 20px rgba(0,0,0,0.15); 
    border-radius: 12px; 
    padding: 6px; 
    z-index: 1000; 
    border: 1px solid var(--border); 
}

.menu-item { 
    padding: 10px; 
    font-size: 14px; 
    border-radius: 8px; 
    cursor: pointer; 
    font-weight: 500;
    
    /* --- ВЫРАВНИВАНИЕ --- */
    display: flex;
    align-items: center; /* Центр по вертикали строго */
    gap: 12px;           /* Чуть больше воздуха между иконкой и текстом */
    line-height: 1;      /* Убираем лишние отступы у текста */
}

.menu-item:hover { background: var(--bg-sec); }
.danger-text { color: var(--danger); }

/* Стили для иконок в меню */
.menu-item svg {
    width: 20px;
    height: 20px;
    fill: var(--text-main);
    pointer-events: none;
    display: block; /* Важно: убирает фантомный отступ снизу */
    flex-shrink: 0; /* Запрещаем иконке сжиматься, если текст длинный */
}

/* Красные иконки для опасных действий */
.menu-item.danger-text svg {
    fill: var(--danger);
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.mobile-only { display: none; }

/* --- ИСПРАВЛЕНИЯ ДЛЯ МОБИЛЬНЫХ И ВЫДЕЛЕНИЯ --- */

.chat-item, .message, .active-chat, .menu-item, button, .icon-btn {
    -webkit-user-select: none;   /* Safari */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* IE10+/Edge */
    user-select: none;           /* Standard */
    -webkit-touch-callout: none; /* iOS: убирает лупу и системное меню */
}

/* Разрешаем печатать и выделять текст ТОЛЬКО в инпутах */
input, textarea {
    -webkit-user-select: text !important;
    user-select: text !important;
    -webkit-touch-callout: default !important;
}

/* Блокируем меню картинки на iOS */
img { 
    -webkit-touch-callout: none; 
    pointer-events: auto; 
    user-select: none; 
    -webkit-user-select: none;
}


/* 2. Адаптив и Мобильное меню */
@media (max-width: 768px) {
    /* Основной лейаут */
    .mobile-only { display: flex; margin-right: 10px; }
    .sidebar { width: 100%; border-right: none; height: 100%; }
    .chat-area { width: 100%; display: none; height: 100%; }
    
    /* Переключение экранов */
    body.chat-open .sidebar { display: none; }
    body.chat-open .chat-area { display: flex; }
    
    /* Размеры окон */
    .auth-box { width: 90%; }
    .modal-content { width: 90%; }
    .msg-photo { max-width: 100% !important; max-height: 300px; }
    
    /* Скрываем стрелки галереи */
    .viewer-nav { display: none !important; }

    /* НОВОЕ КОНТЕКСТНОЕ МЕНЮ (ПОП-АП ВОЗЛЕ ПАЛЬЦА) */
    .context-menu.mobile-sheet {
        bottom: auto !important;
        left: auto !important;
        top: auto !important;
        width: 200px !important;
        transform: none !important;
        border-radius: 12px !important;
        border: 1px solid var(--border);
        box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        padding: 6px !important;
        display: block !important;
        background: white;
        
        /* Анимация появления */
        opacity: 0;
        animation: popIn 0.2s forwards;
    }

    .context-menu.mobile-sheet .menu-item {
        padding: 12px;
        font-size: 14px;
        text-align: left;
        background: transparent;
        margin-bottom: 0;
    }
    
    .context-menu.mobile-sheet .menu-item:hover,
    .context-menu.mobile-sheet .menu-item:active {
        background: var(--bg-sec);
    }
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* --- ЛОАДЕР ДЛЯ ФОТО --- */
.img-loader {
    width: 200px; 
    height: 200px; 
    background: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(0,0,0,0.1);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Анимация появления фото */
.msg-photo {
    display: none; 
    animation: fadeIn 0.3s ease;
}
.msg-photo.loaded {
    display: block !important;
}

/* Кружок с цифрой в списке чатов */
.unread-badge {
    background-color: var(--accent);
    color: white;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    /* Добавляем немного магии для позиционирования */
    position: relative;
    top: -8px;
}

/* Контейнер для времени и статуса прочтения */
.message-meta {
    float: right;
    display: flex;
    gap: 4px;
    margin-left: 6px;
    margin-top: 6px;
    line-height: 1;
    align-items: flex-end;
}

/* Кружок "не прочитано" */
.read-status-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: relative;
    bottom: 1.5px;  /* <-- Двигай это значение: 1px, 2px, 0px */
}
.message.mine .read-status-indicator {
    background-color: rgba(255, 255, 255, 0.5);
}

.chat-meta-icons {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-around;
    height: 42px; /* Такая же высота, как у аватара */
    margin-left: 5px;
}

/* Контейнер для времени/статуса НА ФОТО */
.message-meta-photo {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 8px;
    border-radius: 12px;

    /* ФЛЕКС РЕЖИМ */
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important; /* Центруем по вертикали */
    justify-content: center !important;
    
    /* ВОТ ТВОЙ ОТСТУП */
    /* Gap работает идеально: есть точка — есть отступ. Нет точки — нет отступа. */
    gap: 10px !important; 
    
    z-index: 10;
    pointer-events: none;
    min-width: fit-content !important; /* Запрещаем контейнеру сжиматься */
}

/* Время НА ФОТО */
.message-meta-photo .message-time {
    /* ГЛАВНЫЙ ФИКС: Убираем "прибитие гвоздями" */
    position: static !important; 
    
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    
    color: white;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

/* Точка статуса НА ФОТО */
.message-meta-photo .read-status-indicator {
    background-color: #ffffff !important;
    
    width: 6px !important;
    height: 6px !important;
    min-width: 6px !important;
    border-radius: 50%;
    
    position: static !important;
    margin: 0 !important;
    
    /* ИСПРАВЛЕНИЕ: Убрали !important, чтобы JS мог скрыть точку */
    display: block; 
}

/* --- ДОБАВЛЕНИЕ ИКОНКИ ЗАКРЕПА (БЕЗОПАСНЫЙ МЕТОД) --- */

/* Делаем родительский элемент точкой отсчета для иконки */
.chat-item {
    position: relative;
}

/* Добавляем класс, который будет "включать" иконку */
.chat-item-pinned::after {
    content: '';
    position: absolute;
    top: 8px;       /* Твоя настройка отступа сверху */
    right: 8px;    /* Твоя настройка отступа справа */
    width: 16px;
    height: 16px;
    
    /* НОВЫЙ МЕТОД: Base64. Это 100% рабочий вариант для всех браузеров. */
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0iIzg4ODg4OCI+PHBhdGggZD0iTTE2IDlWNEgxNVY5SDlWNEg4VjlIMlYxMUg4VjIwSDEwVjExSDE0VjIwSDE2VjExSDIyVjlIMTZaIi8+PC9zdmc+');
    
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.7;
    pointer-events: none;
}

/* --- DARK THEME STYLES --- */
body.dark-theme {
    --bg-main: #18191a;
    --bg-sec: #242526;
    --bg-hover: #3a3b3c;
    --text-main: #e4e6eb;
    --text-sec: #b0b3b8;
    --accent: #4E4F50; /* Яркий акцент для темной темы */
    --border: #3e4042;
    --danger: #ff5252;
}

/* Переопределяем цвета для элементов, которые не используют переменные */
body.dark-theme input,
body.dark-theme .modal-content,
body.dark-theme .dropdown-menu,
body.dark-theme .context-menu,
body.dark-theme .chat-area,
body.dark-theme .input-area-container {
    background-color: var(--bg-main);
    color: var(--text-main);
}

body.dark-theme input:focus {
    background-color: var(--bg-main);
}

body.dark-theme .btn.secondary {
    border: 1px solid var(--border);
}

body.dark-theme .message.mine {
    background: var(--accent);
    color: #ffffff; /* Текст в своих сообщениях всегда белый */
}

body.dark-theme .date-separator span {
    background: var(--bg-sec);
    color: var(--text-sec);
}

body.dark-theme .icon-btn svg {
    fill: var(--text-sec);
}

body.dark-theme .icon-btn:hover {
    background-color: var(--bg-hover);
}
body.dark-theme .icon-btn:hover svg {
    fill: var(--text-main);
}

/* Убираем рамки у инпутов в темной теме в обычном состоянии */
body.dark-theme input {
    background-color: var(--bg-sec); /* <-- ВОТ КЛЮЧЕВОЕ ИЗМЕНЕНИЕ */
    border-color: transparent;
}

/* При фокусе убираем старую рамку и тень, и добавляем легкое "свечение" */
body.dark-theme input:focus {
    border-color: transparent;
    box-shadow: 0 0 0 2px rgba(110, 110, 110, 0.25); 
}

/* --- REPLY FEATURE --- */

/* Панель над вводом */
#reply-preview-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    background: var(--bg-main); /* Чтобы сливалось с фоном или var(--bg-sec) для контраста */
    border-bottom: 1px solid var(--border);
    animation: slideUp 0.2s ease-out;
}

.reply-preview-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    overflow: hidden;
}

.reply-line {
    width: 3px;
    height: 36px;
    background: var(--accent);
    border-radius: 2px;
    flex-shrink: 0;
}

.reply-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

#reply-to-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
}

#reply-to-text {
    font-size: 13px;
    color: var(--text-sec);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.icon-btn-small {
    background: none;
    border: none;
    color: var(--text-sec);
    font-size: 16px;
    padding: 5px;
    cursor: pointer;
}

/* Цитата ВНУТРИ сообщения */
.reply-quote {
    margin-bottom: 6px;
    padding: 4px 8px 4px 10px;
    border-left: 3px solid; /* Цвет зададим контекстно */
    border-radius: 4px;
    background: rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    font-size: 12px;
    cursor: pointer;
    user-select: none;
}

.message.mine .reply-quote {
    border-left-color: rgba(255,255,255, 0.8);
    background: rgba(0,0,0,0.1);
}
.message.mine .reply-quote .reply-sender { color: rgba(255,255,255, 0.9); }
.message.mine .reply-quote .reply-text { color: rgba(255,255,255, 0.7); }

.message.theirs .reply-quote {
    border-left-color: var(--accent);
    background: rgba(0,0,0,0.04);
}
.message.theirs .reply-quote .reply-sender { color: var(--accent); }
.message.theirs .reply-quote .reply-text { color: var(--text-sec); }

.reply-sender { font-weight: 700; margin-bottom: 2px; }
.reply-text { 
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; 
    max-width: 200px;
}

/* Анимация появления панели */
@keyframes slideUp {
    from { transform: translateY(10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Темная тема для ответов */
body.dark-theme #reply-preview-bar {
    background: var(--bg-main);
    border-color: var(--border);
}
body.dark-theme .reply-quote {
    background: rgba(255,255,255,0.05);
}

/* --- SCROLL TO BOTTOM BUTTON --- */
.scroll-bottom-btn {
    position: absolute;
    bottom: 90px; /* Чуть выше поля ввода */
    right: 20px;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 50;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid var(--border);
    opacity: 1;
    transform: translateY(0);
}

.active-chat.reply-mode .scroll-bottom-btn {
    bottom: 135px; /* Поднимаем на высоту панели ответа (~60px) */
}

.scroll-bottom-btn:hover {
    background: var(--bg-sec);
    transform: scale(1.1);
}

.scroll-bottom-btn.hidden {
    display: flex !important; /* Перебиваем display:none класса hidden, чтобы работала анимация */
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.scroll-bottom-btn svg {
    fill: var(--text-sec);
    width: 28px;
    height: 28px;
}

/* Темная тема для кнопки */
body.dark-theme .scroll-bottom-btn {
    background: var(--bg-sec);
    border-color: var(--border);
}
body.dark-theme .scroll-bottom-btn svg {
    fill: var(--text-main);
}

/* --- MESSAGE HIGHLIGHT ANIMATION --- */

/* 1. Анимация для СВЕТЛЫХ пузырей (чужие в светлой теме) -> Затемняем */
@keyframes flash-dim {
    0% { filter: brightness(0.85); transform: scale(0.98); }
    50% { filter: brightness(0.85); transform: scale(0.98); }
    100% { filter: brightness(1); transform: scale(1); }
}

/* 2. Анимация для ТЕМНЫХ пузырей (свои в светлой теме) -> Высветляем */
@keyframes flash-brighten {
    0% { filter: brightness(1.8); transform: scale(0.98); } /* Делаем черный светло-серым на секунду */
    50% { filter: brightness(1.8); transform: scale(0.98); }
    100% { filter: brightness(1); transform: scale(1); }
}

/* 3. Анимация для ТЕМНОЙ ТЕМЫ (все пузыри темные) -> Высветляем */
@keyframes flash-darkmode {
    0% { filter: brightness(1.3); transform: scale(0.98); }
    50% { filter: brightness(1.3); transform: scale(0.98); }
    100% { filter: brightness(1); transform: scale(1); }
}

/* --- ПРИМЕНЕНИЕ --- */

/* По умолчанию (чужие сообщения в светлой теме) */
.message-flash-highlight {
    animation: flash-dim 1.7s ease-out;
    transform-origin: center;
}

/* ИСКЛЮЧЕНИЕ: Свои сообщения (черные) в светлой теме -> используем высветление */
.message.mine.message-flash-highlight {
    animation-name: flash-brighten;
}

/* ТЕМНАЯ ТЕМА: Для всех сообщений используем высветление */
body.dark-theme .message-flash-highlight,
body.dark-theme .message.mine.message-flash-highlight {
    animation-name: flash-darkmode;
}

/* --- DRAG & DROP OVERLAY --- */
.drag-overlay {
    position: absolute;
    inset: 0; /* Растягиваем на весь родительский блок (active-chat-view) */
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000; /* Поверх сообщений, но под модалками */
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
    transition: opacity 0.2s;
}

.drag-overlay.hidden {
    display: none !important;
}

.drag-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
    gap: 15px;
    pointer-events: none; /* Важно: чтобы мышь не "спотыкалась" об текст при перетаскивании */
}

.drag-message svg {
    width: 64px;
    height: 64px;
    fill: white;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Выравнивание иконки звука */
#sound-settings-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Расстояние между иконкой и текстом */
}

#sound-settings-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor; /* Иконка берет цвет текста */
}

/* Универсальная обертка для аватарки с точкой */
.avatar-wrapper {
    position: relative; /* Чтобы точка позиционировалась относительно этого блока */
    display: flex;      /* Чтобы убрать лишние отступы у div */
    flex-shrink: 0;
}

/* Настройки точки для шапки и мини-профиля */
#header-online-badge,
#my-online-badge {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 12px;       /* Чуть меньше чем в списке чатов, аккуратнее */
    height: 12px;
    background-color: #4caf50;
    border: 2px solid var(--bg-main); /* Обводка под цвет фона */
    border-radius: 50%;
    z-index: 5;
}

/* В темной теме обводка темная */
body.dark-theme #header-online-badge,
body.dark-theme #my-online-badge {
    border-color: var(--bg-main); /* Используем bg-main, он уже меняется в теме */
}

/* Скрываем точку, если нужно */
#header-online-badge.hidden,
#my-online-badge.hidden {
    display: none;
}

/* --- EMOJI STYLES (Apple iOS Style) --- */
img.emoji {
    /* Фиксируем размер, чтобы не было гигантов */
    height: 17px !important; 
    width: 17px !important;
    
    /* Отступы, чтобы текст не прилипал */
    margin: 0 0px;
    
    /* Убираем влияние на высоту строки */
    display: inline-block;
    
    /* МАГИЯ ВЫРАВНИВАНИЯ:
       vertical-align: middle ставит середину картинки по середине *базовой линии* (x-height) шрифта.
       Обычно смайлики визуально кажутся "выше".
       Добавляем смещение вниз через transform.
    */
    vertical-align: middle; 
    transform: translateY(0px); /* Чуть-чуть поднять/опустить. Поиграйся: -1px, -2px или 1px */
    
    pointer-events: none;
}

/* На мобилках (где текст крупнее) можно чуть увеличить смайлы */
@media (max-width: 768px) {
    img.emoji {
        height: 19px !important;
        width: 19px !important;
        /* 
           Было -2px (поднимало вверх).
           Ставим 1.5px (опускаем вниз).
           Если все еще высоко — ставь 2.5px. 
           Если упало слишком низко — ставь 0px.
        */
        transform: translateY(0px); 
    }
}