{% extends "base.html" %} {% block css %} .timestamp { min-width: 10em; } .chat-packet:nth-of-type(odd) { background-color: #3a3a3a; } .chat-packet { border-bottom: 1px solid #555; padding: 8px; border-radius: 8px; } .chat-packet:nth-of-type(even) { background-color: #333333; } @keyframes flash { 0% { background-color: #ffe066; } 100% { background-color: inherit; } } .chat-packet.flash { animation: flash 3.5s ease-out; } /* Nested reply style */ .replying-to { font-size: 0.85em; color: #aaa; margin-top: 4px; padding-left: 20px; } .replying-to .reply-preview { color: #aaa; } .filter-bar { display: flex; justify-content: center; align-items: center; gap: 10px; margin-bottom: 16px; } .filter-label { color: #ccc; font-size: 14px; } #chatChannelSelect { padding: 4px 6px; background: #444; color: #fff; border: none; border-radius: 4px; } .status-message { color: #bbb; margin-bottom: 12px; display: none; } {% endblock %} {% block body %}