/* ChatInput component styling */ /* Algemene container */ .chat-input-container { width: 100%; padding: 10px; background-color: #fff; border-top: 1px solid #e0e0e0; font-family: Arial, sans-serif; font-size: 14px; } /* Input veld en knoppen */ .chat-input { display: flex; align-items: flex-end; gap: 10px; } .input-main { flex: 1; position: relative; } /* Character counter */ .character-counter { position: absolute; right: 10px; bottom: 10px; font-size: 12px; color: #999; } .character-counter.over-limit { color: #ff4d4f; } /* Input actions */ .input-actions { display: flex; align-items: center; gap: 8px; } /* Verzendknop */ .send-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background-color: #0084ff; color: white; border: none; border-radius: 50%; cursor: pointer; transition: background-color 0.2s; } .send-btn:hover { background-color: #0077e6; } .send-btn:disabled { background-color: #ccc; cursor: not-allowed; } .send-btn.form-mode { background-color: #4caf50; } .send-btn.form-mode:hover { background-color: #43a047; } /* Loading spinner */ .loading-spinner { display: inline-block; animation: spin 1s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }