/* НеЧат — Загрузка файлов */

#file-input {
    display: none;
}

.btn-attach.active {
    background: #4ade80 !important;
    color: #000 !important;
}

.attach-preview {
    display: none;
    position: absolute;
    bottom: 60px;
    left: 12px;
    background: var(--panel-bg, #1e1e2e);
    border: 1px solid var(--border, #333);
    border-radius: 8px;
    padding: 8px;
    max-width: 250px;
    z-index: 100;
}

.attach-preview.show {
    display: block;
}

.attach-preview img {
    max-width: 230px;
    max-height: 150px;
    border-radius: 4px;
}

.attach-preview .file-name {
    font-size: 11px;
    color: var(--text-muted, #888);
    margin-top: 4px;
    word-break: break-all;
}

.attach-preview .file-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
