/* Feline Union chat panel — works in right rail and TV popup */
.fuc-panel { display: flex; flex-direction: column; height: 100%; min-height: 0;
    background: #0a0a0f; border-left: 1px solid #1e1e2e; color: #f5f1e8; font-size: 13px; }
.fuc-header { padding: 10px 12px; border-bottom: 1px solid #1e1e2e;
    display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; }
.fuc-header .title { font-weight: 700; }
.fuc-header .mod-link { color: #6b6b80; font-size: 10px; text-decoration: underline; }
.fuc-header .mod-link:hover { color: #a78bfa; }
.fuc-you { padding: 6px 12px; background: #0e0e16; border-bottom: 1px solid #1e1e2e;
    font-size: 11px; color: #6b6b80; display: flex; justify-content: space-between; align-items: center; }
.fuc-you .name-edit { color: #a78bfa; cursor: pointer; }
.fuc-msgs { flex: 1; overflow-y: auto; padding: 4px 0; min-height: 0; }
.fuc-msg { padding: 4px 12px; line-height: 1.45; word-wrap: break-word; }
.fuc-msg:hover { background: rgba(167,139,250,0.04); }
.fuc-msg .ts { color: #4a4a5e; font-size: 10px; margin-right: 4px; font-variant-numeric: tabular-nums; }
.fuc-msg .name { font-weight: 700; }
.fuc-msg.tombstone { color: #6b6b80; font-style: italic; }
.fuc-msg.tombstone .name { color: #888; }
.verified-badge { display: inline-block; width: 12px; height: 12px; background: #a78bfa;
    border-radius: 50%; position: relative; vertical-align: middle; margin-left: 2px; }
.verified-badge::after { content: '✓'; position: absolute; inset: 0; font-size: 9px; color: #000;
    text-align: center; line-height: 12px; font-weight: 900; }
.emote-inline { display: inline-block; width: 22px; height: 22px; vertical-align: middle; margin: 0 1px; }
.fuc-msg.emote-only .emote-inline { width: 56px; height: 56px; }
.fuc-banner { padding: 6px 12px; font-size: 11px; }
.fuc-banner.slow { background: rgba(245,166,35,0.1); border-left: 3px solid #f5a623; color: #f5d09a; }
.fuc-banner.block { background: rgba(214,40,40,0.1); border-left: 3px solid #d62828; color: #f5a5a5; }
.fuc-coach { background: linear-gradient(135deg, rgba(167,139,250,0.12), rgba(167,139,250,0.04));
    border-left: 3px solid #a78bfa; padding: 8px 12px; margin: 4px 12px; border-radius: 6px;
    font-size: 12px; color: #d6d0c2; }
.fuc-coach .lbl { color: #a78bfa; font-weight: 700; font-size: 10px; text-transform: uppercase;
    letter-spacing: 0.05em; display: block; margin-bottom: 4px; }
.fuc-presend { background: #14141c; border: 2px solid #a78bfa; border-radius: 10px;
    padding: 12px; margin: 10px; font-size: 13px; }
.fuc-presend .original, .fuc-presend .suggestion { padding: 8px 10px; border-radius: 6px; margin-bottom: 8px; }
.fuc-presend .original { background: #0a0a0f; }
.fuc-presend .suggestion { background: rgba(167,139,250,0.08); border-left: 3px solid #a78bfa; }
.fuc-presend .actions { display: flex; gap: 6px; }
.fuc-presend .btn { padding: 6px 10px; border-radius: 6px; font-size: 11px; font-weight: 700;
    border: 0; cursor: pointer; flex: 1; }
.fuc-presend .btn-use { background: #a78bfa; color: #000; }
.fuc-presend .btn-asis { background: #2e2e3e; color: #f5f1e8; }
.fuc-presend .btn-edit { background: transparent; color: #a78bfa; border: 1px solid #a78bfa; }
.fuc-compose { border-top: 1px solid #1e1e2e; padding: 10px; flex-shrink: 0; position: relative; }
.fuc-compose textarea { background: #1a1a26; border: 1px solid #2e2e3e; border-radius: 8px;
    padding: 8px 10px; width: 100%; color: #f5f1e8; font-size: 13px; resize: none; box-sizing: border-box; }
.fuc-compose textarea:focus { outline: none; border-color: #a78bfa; }
.fuc-compose .bar { display: flex; align-items: center; gap: 6px; margin-top: 6px; font-size: 11px; color: #6b6b80; }
.fuc-compose .send { background: #a78bfa; color: #000; padding: 6px 14px; border-radius: 6px;
    font-weight: 700; font-size: 12px; border: 0; cursor: pointer; margin-left: auto; }
.fuc-compose .send:disabled { opacity: 0.4; cursor: not-allowed; }
.fuc-compose .icon { background: transparent; border: 0; color: #6b6b80; cursor: pointer;
    padding: 4px 6px; border-radius: 4px; }
.fuc-compose .icon:hover { background: rgba(167,139,250,0.1); color: #a78bfa; }
.fuc-picker { position: absolute; bottom: 70px; right: 10px; width: 280px; max-height: 320px;
    background: #14141c; border: 1px solid #2e2e3e; border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); padding: 8px; overflow-y: auto; z-index: 30; }
.fuc-picker .grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 4px; }
.fuc-picker .ebtn { background: transparent; border: 0; padding: 4px; border-radius: 4px; cursor: pointer; }
.fuc-picker .ebtn:hover { background: rgba(167,139,250,0.2); transform: scale(1.2); }
.fuc-picker .ebtn img { width: 22px; height: 22px; }
