/* =========================================================================
   RDF Tracker - Module: chat.css (v8.9.2 - Live Chat UI Inhoud)
   ========================================================================= */

#chat-box {
    flex: 1;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 6px;
    padding: 12px;
    overflow-y: auto;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-row {
    font-size: 13px;
    line-height: 1.4;
    color: #e2e8f0;
    word-break: break-word;
}

.chat-tijd { 
    color: #64748b; 
    margin-right: 5px; 
    font-family: monospace; 
}

.chat-naam { 
    color: #3b82f6; 
    font-weight: bold; 
    margin-right: 5px; 
}

.chat-form {
    display: flex;
    gap: 8px;
}

.chat-input {
    flex: 1;
    background: #0f172a;
    border: 1px solid #334155;
    color: white;
    padding: 10px;
    border-radius: 4px;
    font-size: 13px;
}

.chat-input-naam {
    width: 80px;
    flex: none;
    font-weight: bold;
    color: #3b82f6;
}

.chat-input:focus {
    outline: none;
    border-color: #0ea5e9;
}

.chat-send-btn {
    background: #0ea5e9;
    color: white;
    border: none;
    padding: 0 16px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.15s ease;
}

.chat-send-btn:hover {
    background: #0284c7;
}

