chat.html 37 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172
  1. <html>
  2. <head>
  3. <meta charset="UTF-8">
  4. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  5. <title>Chat Forderung</title>
  6. <style>
  7. :root {
  8. --primary: #5468FF;
  9. --primary-light: #8590FF;
  10. --primary-dark: #3A4DB2;
  11. --student: #E9EFFF;
  12. --teacher: #EBFAEF;
  13. --teacher-accent: #4CAF50;
  14. --text-dark: #1A2138;
  15. --text-light: #5F6A8A;
  16. --background: #F9FAFC;
  17. --panel: #FFFFFF;
  18. --border: #E1E5EE;
  19. --shadow: 0 4px 12px rgba(84, 104, 255, 0.10);
  20. --hover-shadow: 0 6px 16px rgba(84, 104, 255, 0.18);
  21. --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  22. }
  23. * {
  24. margin: 0;
  25. padding: 0;
  26. box-sizing: border-box;
  27. font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  28. }
  29. body {
  30. background-color: var(--background);
  31. color: var(--text-dark);
  32. width: 100%;
  33. height: 100vh;
  34. display: flex;
  35. align-items: center;
  36. justify-content: center;
  37. overflow: hidden;
  38. }
  39. .chat-container {
  40. width: 700px;
  41. height: 700px;
  42. display: flex;
  43. flex-direction: column;
  44. border-radius: 16px;
  45. background-color: var(--panel);
  46. box-shadow: var(--shadow);
  47. overflow: hidden;
  48. position: relative;
  49. }
  50. .header {
  51. padding: 16px 24px;
  52. background-color: var(--panel);
  53. border-bottom: 1px solid var(--border);
  54. display: flex;
  55. align-items: center;
  56. justify-content: space-between;
  57. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  58. position: relative;
  59. z-index: 10;
  60. }
  61. .header-left {
  62. display: flex;
  63. align-items: center;
  64. gap: 12px;
  65. }
  66. .course-info {
  67. display: flex;
  68. flex-direction: column;
  69. }
  70. .course-title {
  71. font-weight: 600;
  72. font-size: 16px;
  73. color: var(--text-dark);
  74. }
  75. .course-participants {
  76. font-size: 12px;
  77. color: var(--text-light);
  78. }
  79. .header-actions {
  80. display: flex;
  81. gap: 12px;
  82. }
  83. .icon-button {
  84. width: 36px;
  85. height: 36px;
  86. border-radius: 50%;
  87. border: none;
  88. display: flex;
  89. align-items: center;
  90. justify-content: center;
  91. background-color: var(--background);
  92. color: var(--text-light);
  93. cursor: pointer;
  94. transition: var(--transition);
  95. }
  96. .icon-button:hover {
  97. background-color: var(--primary-light);
  98. color: white;
  99. transform: translateY(-2px);
  100. box-shadow: var(--hover-shadow);
  101. }
  102. .icon-button svg {
  103. width: 18px;
  104. height: 18px;
  105. }
  106. .tabs {
  107. display: flex;
  108. padding: 0 20px;
  109. background-color: var(--panel);
  110. border-bottom: 1px solid var(--border);
  111. position: relative;
  112. z-index: 5;
  113. }
  114. .tab {
  115. padding: 12px 16px;
  116. font-size: 14px;
  117. font-weight: 500;
  118. color: var(--text-light);
  119. cursor: pointer;
  120. border-bottom: 2px solid transparent;
  121. transition: var(--transition);
  122. position: relative;
  123. }
  124. .tab.active {
  125. color: var(--primary);
  126. border-bottom: 2px solid var(--primary);
  127. }
  128. .tab:hover:not(.active) {
  129. color: var(--text-dark);
  130. }
  131. .badge {
  132. position: absolute;
  133. top: 8px;
  134. right: 8px;
  135. background-color: var(--primary);
  136. color: white;
  137. font-size: 10px;
  138. font-weight: 500;
  139. padding: 1px 6px;
  140. border-radius: 10px;
  141. }
  142. .chat-content {
  143. flex: 1;
  144. overflow-y: auto;
  145. padding: 24px;
  146. display: flex;
  147. flex-direction: column;
  148. gap: 16px;
  149. scroll-behavior: smooth;
  150. }
  151. .chat-content::-webkit-scrollbar {
  152. width: 6px;
  153. }
  154. .chat-content::-webkit-scrollbar-track {
  155. background: transparent;
  156. }
  157. .chat-content::-webkit-scrollbar-thumb {
  158. background-color: var(--border);
  159. border-radius: 6px;
  160. }
  161. .message {
  162. display: flex;
  163. flex-direction: column;
  164. max-width: 80%;
  165. animation: fadeIn 0.3s ease-out;
  166. }
  167. @keyframes fadeIn {
  168. from {
  169. opacity: 0;
  170. transform: translateY(10px);
  171. }
  172. to {
  173. opacity: 1;
  174. transform: translateY(0);
  175. }
  176. }
  177. .message.student {
  178. align-self: flex-end;
  179. }
  180. .message.teacher {
  181. align-self: flex-start;
  182. }
  183. .message-header {
  184. display: flex;
  185. align-items: center;
  186. gap: 8px;
  187. margin-bottom: 4px;
  188. }
  189. .avatar {
  190. width: 28px;
  191. height: 28px;
  192. border-radius: 50%;
  193. display: flex;
  194. align-items: center;
  195. justify-content: center;
  196. font-weight: 600;
  197. font-size: 12px;
  198. color: white;
  199. flex-shrink: 0;
  200. }
  201. .student .avatar {
  202. background-color: var(--primary);
  203. }
  204. .teacher .avatar {
  205. background-color: var(--teacher-accent);
  206. }
  207. .sender-name {
  208. font-size: 13px;
  209. font-weight: 600;
  210. }
  211. .student .sender-name {
  212. color: var(--primary-dark);
  213. }
  214. .teacher .sender-name {
  215. color: var(--teacher-accent);
  216. }
  217. .timestamp {
  218. font-size: 11px;
  219. color: var(--text-light);
  220. margin-left: auto;
  221. }
  222. .message-bubble {
  223. padding: 12px 16px;
  224. border-radius: 16px;
  225. font-size: 14px;
  226. line-height: 1.5;
  227. position: relative;
  228. transition: var(--transition);
  229. }
  230. .student .message-bubble {
  231. background-color: var(--student);
  232. border-top-right-radius: 4px;
  233. }
  234. .teacher .message-bubble {
  235. background-color: var(--teacher);
  236. border-top-left-radius: 4px;
  237. }
  238. .message-bubble:hover {
  239. transform: translateY(-2px);
  240. box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  241. }
  242. .message-actions {
  243. display: flex;
  244. gap: 8px;
  245. margin-top: 6px;
  246. justify-content: flex-end;
  247. opacity: 0;
  248. transition: var(--transition);
  249. }
  250. .message:hover .message-actions {
  251. opacity: 1;
  252. }
  253. .action-button {
  254. background: none;
  255. border: none;
  256. font-size: 12px;
  257. color: var(--text-light);
  258. cursor: pointer;
  259. padding: 2px 6px;
  260. border-radius: 4px;
  261. transition: var(--transition);
  262. }
  263. .action-button:hover {
  264. background-color: rgba(84, 104, 255, 0.1);
  265. color: var(--primary);
  266. }
  267. .embed-content {
  268. margin-top: 10px;
  269. border-radius: 8px;
  270. overflow: hidden;
  271. border: 1px solid var(--border);
  272. background-color: white;
  273. transition: var(--transition);
  274. }
  275. .embed-content:hover {
  276. box-shadow: var(--shadow);
  277. transform: translateY(-2px);
  278. }
  279. .embed-header {
  280. padding: 10px 12px;
  281. background-color: rgba(84, 104, 255, 0.05);
  282. display: flex;
  283. align-items: center;
  284. gap: 8px;
  285. border-bottom: 1px solid var(--border);
  286. }
  287. .embed-icon {
  288. width: 20px;
  289. height: 20px;
  290. display: flex;
  291. align-items: center;
  292. justify-content: center;
  293. color: var(--primary);
  294. }
  295. .embed-title {
  296. font-size: 12px;
  297. font-weight: 500;
  298. flex: 1;
  299. }
  300. .embed-body {
  301. padding: 12px;
  302. }
  303. .embed-image {
  304. width: 100%;
  305. border-radius: 6px;
  306. height: auto;
  307. object-fit: cover;
  308. }
  309. .embed-text {
  310. font-size: 13px;
  311. color: var(--text-light);
  312. margin-top: 8px;
  313. line-height: 1.4;
  314. }
  315. .embed-footer {
  316. padding: 8px 12px;
  317. border-top: 1px solid var(--border);
  318. display: flex;
  319. align-items: center;
  320. justify-content: space-between;
  321. }
  322. .embed-button {
  323. background-color: var(--primary-light);
  324. color: white;
  325. font-size: 12px;
  326. font-weight: 500;
  327. padding: 6px 12px;
  328. border-radius: 6px;
  329. border: none;
  330. cursor: pointer;
  331. transition: var(--transition);
  332. }
  333. .embed-button:hover {
  334. background-color: var(--primary);
  335. transform: translateY(-1px);
  336. box-shadow: 0 3px 8px rgba(84, 104, 255, 0.2);
  337. }
  338. .date-divider {
  339. display: flex;
  340. align-items: center;
  341. gap: 12px;
  342. margin: 16px 0;
  343. opacity: 0.7;
  344. }
  345. .divider-line {
  346. flex: 1;
  347. height: 1px;
  348. background-color: var(--border);
  349. }
  350. .divider-text {
  351. font-size: 12px;
  352. color: var(--text-light);
  353. white-space: nowrap;
  354. }
  355. .typing-indicator {
  356. display: flex;
  357. align-items: center;
  358. gap: 4px;
  359. font-size: 12px;
  360. color: var(--text-light);
  361. padding: 8px 12px;
  362. margin-bottom: 8px;
  363. }
  364. .typing-dot {
  365. width: 5px;
  366. height: 5px;
  367. background-color: var(--text-light);
  368. border-radius: 50%;
  369. animation: typingAnimation 1.4s infinite ease-in-out;
  370. }
  371. .typing-dot:nth-child(1) {
  372. animation-delay: 0s;
  373. }
  374. .typing-dot:nth-child(2) {
  375. animation-delay: 0.2s;
  376. }
  377. .typing-dot:nth-child(3) {
  378. animation-delay: 0.4s;
  379. }
  380. @keyframes typingAnimation {
  381. 0%, 100% {
  382. transform: translateY(0);
  383. opacity: 0.5;
  384. }
  385. 50% {
  386. transform: translateY(-4px);
  387. opacity: 1;
  388. }
  389. }
  390. .input-area {
  391. padding: 16px 24px 24px;
  392. background-color: var(--panel);
  393. border-top: 1px solid var(--border);
  394. z-index: 10;
  395. }
  396. .toolbar {
  397. display: flex;
  398. align-items: center;
  399. gap: 8px;
  400. margin-bottom: 12px;
  401. }
  402. .tool-button {
  403. background: none;
  404. border: none;
  405. cursor: pointer;
  406. width: 32px;
  407. height: 32px;
  408. border-radius: 4px;
  409. display: flex;
  410. align-items: center;
  411. justify-content: center;
  412. color: var(--text-light);
  413. transition: var(--transition);
  414. }
  415. .tool-button:hover {
  416. background-color: rgba(84, 104, 255, 0.1);
  417. color: var(--primary);
  418. }
  419. .tool-button svg {
  420. width: 18px;
  421. height: 18px;
  422. }
  423. .input-container {
  424. display: flex;
  425. gap: 12px;
  426. align-items: center;
  427. }
  428. .message-input {
  429. flex: 1;
  430. padding: 14px 16px;
  431. border-radius: 10px;
  432. border: 1px solid var(--border);
  433. background-color: var(--background);
  434. font-size: 14px;
  435. resize: none;
  436. transition: var(--transition);
  437. height: 50px;
  438. outline: none;
  439. }
  440. .message-input:focus {
  441. border-color: var(--primary-light);
  442. box-shadow: 0 0 0 2px rgba(84, 104, 255, 0.1);
  443. }
  444. .send-button {
  445. background-color: var(--primary);
  446. color: white;
  447. border: none;
  448. width: 50px;
  449. height: 50px;
  450. border-radius: 12px;
  451. cursor: pointer;
  452. display: flex;
  453. align-items: center;
  454. justify-content: center;
  455. transition: var(--transition);
  456. }
  457. .send-button:hover {
  458. background-color: var(--primary-dark);
  459. transform: translateY(-2px);
  460. box-shadow: 0 4px 12px rgba(84, 104, 255, 0.2);
  461. }
  462. .poll-container {
  463. padding: 12px;
  464. background-color: rgba(84, 104, 255, 0.05);
  465. border-radius: 8px;
  466. margin-top: 8px;
  467. }
  468. .poll-question {
  469. font-weight: 500;
  470. margin-bottom: 10px;
  471. font-size: 13px;
  472. }
  473. .poll-options {
  474. display: flex;
  475. flex-direction: column;
  476. gap: 8px;
  477. }
  478. .poll-option {
  479. background-color: white;
  480. border: 1px solid var(--border);
  481. padding: 8px 12px;
  482. border-radius: 6px;
  483. font-size: 13px;
  484. position: relative;
  485. cursor: pointer;
  486. transition: var(--transition);
  487. display: flex;
  488. justify-content: space-between;
  489. }
  490. .poll-option:hover {
  491. border-color: var(--primary-light);
  492. background-color: rgba(84, 104, 255, 0.03);
  493. }
  494. .poll-option.selected {
  495. border-color: var(--primary);
  496. background-color: rgba(84, 104, 255, 0.1);
  497. }
  498. .poll-option.selected::before {
  499. content: '';
  500. position: absolute;
  501. left: 0;
  502. top: 0;
  503. height: 100%;
  504. width: 3px;
  505. background-color: var(--primary);
  506. border-top-left-radius: 6px;
  507. border-bottom-left-radius: 6px;
  508. }
  509. .poll-percent {
  510. font-size: 12px;
  511. font-weight: 500;
  512. color: var(--primary);
  513. }
  514. .poll-votes {
  515. margin-top: 10px;
  516. font-size: 12px;
  517. color: var(--text-light);
  518. text-align: right;
  519. }
  520. .resource-link {
  521. display: flex;
  522. align-items: center;
  523. gap: 8px;
  524. padding: 10px;
  525. background-color: var(--background);
  526. border-radius: 6px;
  527. cursor: pointer;
  528. transition: var(--transition);
  529. text-decoration: none;
  530. color: var(--text-dark);
  531. border: 1px solid var(--border);
  532. }
  533. .resource-link:hover {
  534. background-color: rgba(84, 104, 255, 0.05);
  535. border-color: var(--primary-light);
  536. transform: translateY(-2px);
  537. box-shadow: var(--shadow);
  538. }
  539. .resource-icon {
  540. width: 36px;
  541. height: 36px;
  542. background-color: rgba(84, 104, 255, 0.1);
  543. border-radius: 6px;
  544. display: flex;
  545. align-items: center;
  546. justify-content: center;
  547. color: var(--primary);
  548. }
  549. .resource-info {
  550. flex: 1;
  551. }
  552. .resource-title {
  553. font-size: 13px;
  554. font-weight: 500;
  555. }
  556. .resource-desc {
  557. font-size: 11px;
  558. color: var(--text-light);
  559. }
  560. /* Responsive Styles */
  561. @media (max-width: 700px) {
  562. .chat-container {
  563. width: 100%;
  564. height: 100%;
  565. border-radius: 0;
  566. }
  567. .message {
  568. max-width: 90%;
  569. }
  570. .header-actions {
  571. gap: 8px;
  572. }
  573. .icon-button {
  574. width: 32px;
  575. height: 32px;
  576. }
  577. .tabs {
  578. padding: 0 10px;
  579. }
  580. .tab {
  581. padding: 12px 10px;
  582. font-size: 13px;
  583. }
  584. }
  585. /* Animation for new messages */
  586. @keyframes popIn {
  587. 0% {
  588. transform: scale(0.8);
  589. opacity: 0;
  590. }
  591. 50% {
  592. transform: scale(1.05);
  593. }
  594. 100% {
  595. transform: scale(1);
  596. opacity: 1;
  597. }
  598. }
  599. .pop-in {
  600. animation: popIn 0.3s forwards;
  601. }
  602. /* Resource expansion animation */
  603. .resource-expanded {
  604. max-height: 0;
  605. overflow: hidden;
  606. transition: max-height 0.3s ease;
  607. }
  608. .resource-expanded.active {
  609. max-height: 200px;
  610. }
  611. /* Tooltip Styles */
  612. .tooltip {
  613. position: relative;
  614. }
  615. .tooltip::after {
  616. content: attr(data-tooltip);
  617. position: absolute;
  618. bottom: 130%;
  619. left: 50%;
  620. transform: translateX(-50%);
  621. padding: 5px 10px;
  622. border-radius: 4px;
  623. background-color: rgba(26, 33, 56, 0.9);
  624. color: white;
  625. font-size: 11px;
  626. white-space: nowrap;
  627. opacity: 0;
  628. visibility: hidden;
  629. transition: all 0.2s ease;
  630. pointer-events: none;
  631. z-index: 100;
  632. }
  633. .tooltip::before {
  634. content: '';
  635. position: absolute;
  636. bottom: 120%;
  637. left: 50%;
  638. transform: translateX(-50%);
  639. border-width: 4px;
  640. border-style: solid;
  641. border-color: rgba(26, 33, 56, 0.9) transparent transparent transparent;
  642. opacity: 0;
  643. visibility: hidden;
  644. transition: all 0.2s ease;
  645. pointer-events: none;
  646. z-index: 100;
  647. }
  648. .tooltip:hover::after,
  649. .tooltip:hover::before {
  650. opacity: 1;
  651. visibility: visible;
  652. }
  653. /* Reaction Styles */
  654. .reactions {
  655. display: flex;
  656. flex-wrap: wrap;
  657. gap: 4px;
  658. margin-top: 8px;
  659. }
  660. .reaction {
  661. font-size: 12px;
  662. padding: 2px 6px 2px 4px;
  663. background-color: rgba(84, 104, 255, 0.06);
  664. border-radius: 12px;
  665. display: flex;
  666. align-items: center;
  667. gap: 3px;
  668. cursor: pointer;
  669. transition: var(--transition);
  670. }
  671. .reaction:hover {
  672. background-color: rgba(84, 104, 255, 0.15);
  673. }
  674. .reaction.active {
  675. background-color: rgba(84, 104, 255, 0.2);
  676. font-weight: 500;
  677. }
  678. </style>
  679. </head>
  680. <body>
  681. <div class="chat-container">
  682. <div class="header">
  683. <div class="header-left">
  684. <div class="avatar" style="background-color: #5468FF;">
  685. <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z"></path></svg>
  686. </div>
  687. <div class="course-info">
  688. <div class="course-title">993413 - Elvis Selimovic / WRG25400108</div>
  689. <div class="course-participants">4 Mitarbeiter involviert</div>
  690. </div>
  691. </div>
  692. <div class="header-actions">
  693. <button class="icon-button tooltip" data-tooltip="Search">
  694. <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>
  695. </button>
  696. <button class="icon-button tooltip" data-tooltip="Resource Library">
  697. <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"></path><path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"></path></svg>
  698. </button>
  699. <button class="icon-button tooltip" data-tooltip="Settings">
  700. <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="3"></circle><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"></path></svg>
  701. </button>
  702. </div>
  703. </div>
  704. <div class="tabs">
  705. <div class="tab active">Diese Rechnung</div>
  706. <div class="tab">Alle offenen Rechnungen</div>
  707. <div class="tab">Dieses Fahrzeug</div>
  708. <div class="tab">Gesamte Historie</div>
  709. </div>
  710. <div class="chat-content" id="chatContent">
  711. <div class="date-divider">
  712. <div class="divider-line"></div>
  713. <div class="divider-text">Q1/2025</div>
  714. <div class="divider-line"></div>
  715. </div>
  716. <div class="message teacher">
  717. <div class="message-header">
  718. <div class="avatar">DKI</div>
  719. <div class="sender-name">Daniel Klingenstein</div>
  720. <div class="timestamp">04.01.2025</div>
  721. </div>
  722. <div class="message-bubble">
  723. Korrigierte Werkstattrechnung
  724. </div>
  725. <div class="embed-content">
  726. <div class="embed-header">
  727. <div class="embed-icon">
  728. <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="1 6 1 22 8 18 16 22 23 18 23 2 16 6 8 2 1 6"></polygon><line x1="8" y1="2" x2="8" y2="18"></line><line x1="16" y1="6" x2="16" y2="22"></line></svg>
  729. </div>
  730. <div class="embed-title">Rechnung WRG25400108</div>
  731. </div>
  732. <div class="embed-body">
  733. <img src="img.jpg" alt="Rechnung WRG25400108" class="embed-image">
  734. <div class="embed-text">
  735. ...
  736. </div>
  737. </div>
  738. <div class="embed-footer">
  739. <button class="embed-button" id="openResourceBtn">Öffnen</button>
  740. </div>
  741. </div>
  742. </div>
  743. <div class="message teacher">
  744. <div class="message-header">
  745. <div class="avatar">JAK</div>
  746. <div class="sender-name">Jennifer Walk</div>
  747. <div class="timestamp">22.01.2025</div>
  748. </div>
  749. <div class="message-bubble">
  750. AZ 3120/24 HP Schaden Rep RE kann nicht eingereicht werden. ESW Zusatzprodukte fehlen
  751. </div>
  752. </div>
  753. <div class="message teacher">
  754. <div class="message-header">
  755. <div class="avatar">JAK</div>
  756. <div class="sender-name">Jennifer Walk</div>
  757. <div class="timestamp">30.01.2025</div>
  758. </div>
  759. <div class="message-bubble">
  760. AZ 3120/24 HP Schaden Rep RE an RAW gesendet
  761. </div>
  762. </div>
  763. <div class="message student">
  764. <div class="message-header">
  765. <div class="avatar">CVE</div>
  766. <div class="sender-name">Carolin Vetter</div>
  767. <div class="timestamp">11.03.2025</div>
  768. </div>
  769. <div class="message-bubble">
  770. Stand RA
  771. </div>
  772. </div>
  773. <div class="date-divider">
  774. <div class="divider-line"></div>
  775. <div class="divider-text">Q2/2025</div>
  776. <div class="divider-line"></div>
  777. </div>
  778. <div class="message student">
  779. <div class="message-header">
  780. <div class="avatar">CVE</div>
  781. <div class="sender-name">Carolin Vetter</div>
  782. <div class="timestamp">01.04.2025</div>
  783. </div>
  784. <div class="message-bubble">
  785. Akteneinsicht liegt nun vor, im Diktat
  786. </div>
  787. </div>
  788. <div class="message teacher">
  789. <div class="message-header">
  790. <div class="avatar">JAK</div>
  791. <div class="sender-name">Jennifer Walk</div>
  792. <div class="timestamp">14.04.2025</div>
  793. </div>
  794. <div class="message-bubble">
  795. Stand RA
  796. </div>
  797. </div>
  798. <div class="message teacher">
  799. <div class="message-header">
  800. <div class="avatar">JAK</div>
  801. <div class="sender-name">Jennifer Walk</div>
  802. <div class="timestamp">22.04.2025</div>
  803. </div>
  804. <div class="message-bubble">
  805. Nachgefordert
  806. </div>
  807. <div class="embed-content">
  808. <div class="embed-header">
  809. <div class="embed-icon">
  810. <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="1 6 1 22 8 18 16 22 23 18 23 2 16 6 8 2 1 6"></polygon><line x1="8" y1="2" x2="8" y2="18"></line><line x1="16" y1="6" x2="16" y2="22"></line></svg>
  811. </div>
  812. <div class="embed-title">Mahnung</div>
  813. </div>
  814. <div class="embed-body">
  815. <img src="img.jpg" alt="Mahnung 993413" class="embed-image">
  816. <div class="embed-text">
  817. ...
  818. </div>
  819. </div>
  820. <div class="embed-footer">
  821. <button class="embed-button" id="openResourceBtn">Öffnen</button>
  822. </div>
  823. </div>
  824. </div>
  825. <div class="message teacher">
  826. <div class="message-header">
  827. <div class="avatar">JAK</div>
  828. <div class="sender-name">Jennifer Walk</div>
  829. <div class="timestamp">09.05.2025</div>
  830. </div>
  831. <div class="message-bubble">
  832. Stand RA
  833. </div>
  834. </div>
  835. <div class="message student">
  836. <div class="message-header">
  837. <div class="avatar">CVE</div>
  838. <div class="sender-name">Carolin Vetter</div>
  839. <div class="timestamp">03.06.2025</div>
  840. </div>
  841. <div class="message-bubble">
  842. RA schreibt KD an ob geklagt werden soll und RS besteht
  843. </div>
  844. </div>
  845. <div class="message teacher">
  846. <div class="message-header">
  847. <div class="avatar">JAK</div>
  848. <div class="sender-name">Jennifer Walk</div>
  849. <div class="timestamp">23.06.2025</div>
  850. </div>
  851. <div class="message-bubble">
  852. Stand RA
  853. </div>
  854. </div>
  855. <div class="message student">
  856. <div class="message-header">
  857. <div class="avatar">CVE</div>
  858. <div class="sender-name">Carolin Vetter</div>
  859. <div class="timestamp">23.06.2025</div>
  860. </div>
  861. <div class="message-bubble">
  862. Akte im Diktat
  863. </div>
  864. </div>
  865. <div class="date-divider">
  866. <div class="divider-line"></div>
  867. <div class="divider-text">Q3/2025</div>
  868. <div class="divider-line"></div>
  869. </div>
  870. <div class="message student">
  871. <div class="message-header">
  872. <div class="avatar">CVE</div>
  873. <div class="sender-name">Carolin Vetter</div>
  874. <div class="timestamp">01.07.2025</div>
  875. </div>
  876. <div class="message-bubble">
  877. Warten auf RÜ Polizei
  878. </div>
  879. </div>
  880. <div class="message teacher">
  881. <div class="message-header">
  882. <div class="avatar">JAK</div>
  883. <div class="sender-name">Jennifer Walk</div>
  884. <div class="timestamp">15.07.2025</div>
  885. </div>
  886. <div class="message-bubble">
  887. Stand RA
  888. </div>
  889. </div>
  890. <div class="message teacher">
  891. <div class="message-header">
  892. <div class="avatar">JAK</div>
  893. <div class="sender-name">Jennifer Walk</div>
  894. <div class="timestamp">22.07.2025</div>
  895. </div>
  896. <div class="message-bubble">
  897. Warten auf Rückmeldung Mdt wg Rechtschutz
  898. </div>
  899. </div>
  900. <div class="message teacher">
  901. <div class="message-header">
  902. <div class="avatar">JAK</div>
  903. <div class="sender-name">Jennifer Walk</div>
  904. <div class="timestamp">11.08.2025</div>
  905. </div>
  906. <div class="message-bubble">
  907. Stand RA
  908. </div>
  909. </div>
  910. <div class="message student">
  911. <div class="message-header">
  912. <div class="avatar">CVE</div>
  913. <div class="sender-name">Carolin Vetter</div>
  914. <div class="timestamp">19.08.2025</div>
  915. </div>
  916. <div class="message-bubble">
  917. ST bez. Mit STN S+W wird nachgefordert
  918. </div>
  919. </div>
  920. <div class="message teacher">
  921. <div class="message-header">
  922. <div class="avatar">JAK</div>
  923. <div class="sender-name">Jennifer Walk</div>
  924. <div class="timestamp">08.09.2025</div>
  925. </div>
  926. <div class="message-bubble">
  927. Stand RA
  928. </div>
  929. </div>
  930. <div class="date-divider">
  931. <div class="divider-line"></div>
  932. <div class="divider-text">Q4/2025</div>
  933. <div class="divider-line"></div>
  934. </div>
  935. <div class="message teacher">
  936. <div class="message-header">
  937. <div class="avatar">JAK</div>
  938. <div class="sender-name">Jennifer Walk</div>
  939. <div class="timestamp">14.10.2025</div>
  940. </div>
  941. <div class="message-bubble">
  942. Klage in Vorbereitung WV 18.11.2025
  943. </div>
  944. </div>
  945. <div class="message student">
  946. <div class="message-header">
  947. <div class="avatar">CVE</div>
  948. <div class="sender-name">Carolin Vetter</div>
  949. <div class="timestamp">25.11.2025</div>
  950. </div>
  951. <div class="message-bubble">
  952. Stand RA
  953. </div>
  954. </div>
  955. <div class="message teacher">
  956. <div class="message-header">
  957. <div class="avatar">MDE</div>
  958. <div class="sender-name">Maria Dietrich</div>
  959. <div class="timestamp">30.11.2025</div>
  960. </div>
  961. <div class="message-bubble">
  962. EWB
  963. </div>
  964. <div class="embed-content">
  965. <div class="embed-header">
  966. <div class="embed-icon">
  967. <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="1 6 1 22 8 18 16 22 23 18 23 2 16 6 8 2 1 6"></polygon><line x1="8" y1="2" x2="8" y2="18"></line><line x1="16" y1="6" x2="16" y2="22"></line></svg>
  968. </div>
  969. <div class="embed-title">EWB 20% 11/2025</div>
  970. </div>
  971. <div class="embed-body">
  972. <img src="img.jpg" alt="Buchung" class="embed-image">
  973. <div class="embed-text">
  974. ...
  975. </div>
  976. </div>
  977. <div class="embed-footer">
  978. <button class="embed-button" id="openResourceBtn">Öffnen</button>
  979. </div>
  980. </div>
  981. </div>
  982. <div class="message student">
  983. <div class="message-header">
  984. <div class="avatar">CVE</div>
  985. <div class="sender-name">Carolin Vetter</div>
  986. <div class="timestamp">04.12.2025</div>
  987. </div>
  988. <div class="message-bubble">
  989. gerichtliches Verfahren läuft WV 02/26
  990. </div>
  991. </div>
  992. <div class="date-divider">
  993. <div class="divider-line"></div>
  994. <div class="divider-text">Q1/2026</div>
  995. <div class="divider-line"></div>
  996. </div>
  997. <div class="message teacher">
  998. <div class="message-header">
  999. <div class="avatar">JAK</div>
  1000. <div class="sender-name">Jennifer Walk</div>
  1001. <div class="timestamp">19.02.2026</div>
  1002. </div>
  1003. <div class="message-bubble">
  1004. Stand RA
  1005. </div>
  1006. </div>
  1007. <div class="message teacher">
  1008. <div class="message-header">
  1009. <div class="avatar">JAK</div>
  1010. <div class="sender-name">Jennifer Walk</div>
  1011. <div class="timestamp">09.03.2026</div>
  1012. </div>
  1013. <div class="message-bubble">
  1014. Schreiben von RAW erhalten. Sehr verwirrend, nochmals nachgefragt
  1015. </div>
  1016. </div>
  1017. <div class="message teacher">
  1018. <div class="message-header">
  1019. <div class="avatar">JAK</div>
  1020. <div class="sender-name">Jennifer Walk</div>
  1021. <div class="timestamp">10.03.2026</div>
  1022. </div>
  1023. <div class="message-bubble">
  1024. Vergleich mit HP Versicherung nun KD angeschrieben ob bei seiner Kasko eingereicht wird oder nicht
  1025. </div>
  1026. </div>
  1027. </div>
  1028. <div class="input-area">
  1029. <div class="toolbar">
  1030. <button class="tool-button tooltip" data-tooltip="Attach File">
  1031. </button>
  1032. </div>
  1033. </div>
  1034. </div>
  1035. </body>
  1036. </html>