/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[9].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[9].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[9].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[9].use[5]!./src/features/widgets/WidgetModal.module.scss ***!
  \****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/**
 * WidgetModal styles - Full-screen modal overlay
 */
.WidgetModal_overlay__F65Zi {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
  animation: WidgetModal_fadeIn__tLdnD 0.2s ease;
}

@keyframes WidgetModal_fadeIn__tLdnD {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.WidgetModal_modal__nrG_B {
  position: relative;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  max-width: 56rem;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  animation: WidgetModal_slideUp__57cil 0.3s ease;
}

@keyframes WidgetModal_slideUp__57cil {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.WidgetModal_closeButton__A8yvH {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #6b7280;
}
.WidgetModal_closeButton__A8yvH:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  color: #111827;
}
.WidgetModal_closeButton__A8yvH:active {
  transform: scale(0.95);
}

.WidgetModal_content__B0S_U {
  overflow-y: auto;
  max-height: 90vh;
  padding: 2rem;
  /* Custom scrollbar */
}
.WidgetModal_content__B0S_U::-webkit-scrollbar {
  width: 8px;
}
.WidgetModal_content__B0S_U::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 4px;
}
.WidgetModal_content__B0S_U::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}
.WidgetModal_content__B0S_U::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

.WidgetModal_unknownWidget__ozGE5 {
  padding: 2rem;
  text-align: center;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 768px) {
  .WidgetModal_overlay__F65Zi {
    padding: 0;
  }
  .WidgetModal_modal__nrG_B {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
  .WidgetModal_content__B0S_U {
    padding: 1.5rem;
  }
}
/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[9].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[9].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[9].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[9].use[5]!./src/features/widgets/CopiableTextWidget.module.scss ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/**
 * CopiableTextWidget styles - Matches WidgetCard design
 */
.CopiableTextWidget_card__gl8Zm {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
}
.CopiableTextWidget_card__gl8Zm:hover {
  border-color: #cc0000;
}

.CopiableTextWidget_header__5KxLy {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.CopiableTextWidget_iconContainer__nkLqh {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #6b7280;
}

.CopiableTextWidget_content___9TZw {
  flex: 1;
  min-width: 0;
}

.CopiableTextWidget_title__4zito {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.25rem 0;
}

.CopiableTextWidget_description__CHFP7 {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.CopiableTextWidget_chevron__dmEZS {
  flex-shrink: 0;
  color: #9ca3af;
  transition: transform 0.2s ease;
  display: flex;
  align-items: center;
}

.CopiableTextWidget_chevronExpanded__w6R_U {
  transform: rotate(180deg);
}

.CopiableTextWidget_expandedContent__9CamV {
  padding: 0 1rem 1rem 1rem;
  border-top: 1px solid #f3f4f6;
  margin-top: 0;
}

.CopiableTextWidget_textContent__EZQPz {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  max-height: 400px;
  overflow-y: auto;
  font-size: 0.875rem;
  line-height: 1.625;
  color: #334155;
  white-space: pre-wrap;
  font-family: inherit;
}

.CopiableTextWidget_copyButton__9X_h5 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: #cc0000;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.CopiableTextWidget_copyButton__9X_h5:hover {
  background: #a30000;
}
.CopiableTextWidget_copyButton__9X_h5.CopiableTextWidget_copied__JE6dJ {
  background: #10b981;
}
.CopiableTextWidget_copyButton__9X_h5.CopiableTextWidget_copied__JE6dJ:hover {
  background: #059669;
}
/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[9].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[9].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[9].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[9].use[5]!./src/features/widgets/WidgetCard.module.scss ***!
  \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/**
 * WidgetCard styles - Compact card in chat
 */
.WidgetCard_card__30umq {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}
.WidgetCard_card__30umq:hover {
  border-color: #cc0000;
}

.WidgetCard_cardCompleted__CwkKC {
  background: white;
  border-color: #e5e7eb;
  cursor: default;
}
.WidgetCard_cardCompleted__CwkKC:hover {
  border-color: #cc0000;
  transform: none;
}

.WidgetCard_iconContainer__7frsK {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #6b7280;
  position: relative;
}

.WidgetCard_iconCompleted__r_pA7 {
  color: #cc0000;
}

.WidgetCard_checkBadge__oJTFP {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background: #cc0000;
  color: white;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

.WidgetCard_cardLoading__rUZCt {
  background: white;
  border-color: #d1d5db;
  cursor: default;
  pointer-events: none;
}
.WidgetCard_cardLoading__rUZCt:hover {
  border-color: #d1d5db;
}
.WidgetCard_cardLoading__rUZCt .WidgetCard_iconContainer__7frsK {
  color: #9ca3af;
}

.WidgetCard_content__2suL5 {
  flex: 1;
  min-width: 0;
}

.WidgetCard_title__Brrde {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.25rem 0;
}

.WidgetCard_description__TET7J {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.WidgetCard_arrow__YEyA8 {
  flex-shrink: 0;
  color: #9ca3af;
  transition: transform 0.2s ease;
}
.WidgetCard_card__30umq:hover .WidgetCard_arrow__YEyA8 {
  transform: translateX(4px);
  color: #cc0000;
}

.WidgetCard_actionButton__8Hecv {
  flex-shrink: 0;
  padding: 0.5rem 1.25rem;
  background: #cc0000;
  color: white;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.WidgetCard_card__30umq:hover .WidgetCard_actionButton__8Hecv {
  background: #a30000;
}

.WidgetCard_buttonText__Y6pJc {
  white-space: nowrap;
}
/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[9].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[9].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[9].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[9].use[5]!./src/features/chat/ChatMessage.module.scss ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.ChatMessage_container__j_1Tg {
  width: 100%;
}

.ChatMessage_userMessage__rbfx8 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.ChatMessage_userMessage__rbfx8 .ChatMessage_content__wE7wl {
  max-width: 48rem;
  border-right-width: 4px;
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.ChatMessage_userMessage__rbfx8 .ChatMessage_content__wE7wl .ChatMessage_text__a5MD_ {
  margin: 0px;
  white-space: pre-wrap;
  font-size: 0.875rem;
  line-height: 1.25rem;
  line-height: 1.625;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.ChatMessage_userMessage__rbfx8 .ChatMessage_userLabel__65BfA {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}

.ChatMessage_assistantMessage__nETAl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl {
  max-width: 56rem;
  border-left-width: 4px;
  --tw-border-opacity: 1;
  border-color: rgb(204 0 0 / var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra {
  color: var(--tw-prose-body);
  max-width: 65ch;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 500;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 600;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  font-weight: 400;
  color: var(--tw-prose-counters);
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  color: var(--tw-prose-bullets);
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-inline-start-width: 0.25rem;
  border-inline-start-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 1em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: open-quote;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: close-quote;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 900;
  color: inherit;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 800;
  color: inherit;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px var(--tw-prose-kbd-shadows), 0 3px 0 var(--tw-prose-kbd-shadows);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-inline-end: 0.375em;
  padding-bottom: 0.1875em;
  padding-inline-start: 0.375em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: "`";
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: "`";
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.875em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.9em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-inline-end: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-inline-start: 1.1428571em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: none;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: none;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  width: 100%;
  table-layout: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 0;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: baseline;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: top;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  text-align: start;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra {
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: rgb(17 24 39 / 10%);
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: rgb(255 255 255 / 10%);
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.375em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.375em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(.ChatMessage_prose__VbE0A > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(.ChatMessage_prose__VbE0A > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(.ChatMessage_prose__VbE0A > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(.ChatMessage_prose__VbE0A > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(.ChatMessage_prose__VbE0A > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  padding-inline-start: 1.625em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(.ChatMessage_prose__VbE0A > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(.ChatMessage_prose__VbE0A > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra {
  font-size: 0.875rem;
  line-height: 1.7142857;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.2857143em;
  line-height: 1.5555556;
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-inline-start: 1.1111111em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 2.1428571em;
  margin-top: 0;
  margin-bottom: 0.8em;
  line-height: 1.2;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.4285714em;
  margin-top: 1.6em;
  margin-bottom: 0.8em;
  line-height: 1.4;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.2857143em;
  margin-top: 1.5555556em;
  margin-bottom: 0.4444444em;
  line-height: 1.5555556;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.4285714em;
  margin-bottom: 0.5714286em;
  line-height: 1.4285714;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
  border-radius: 0.3125rem;
  padding-top: 0.1428571em;
  padding-inline-end: 0.3571429em;
  padding-bottom: 0.1428571em;
  padding-inline-start: 0.3571429em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.9em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
  line-height: 1.6666667;
  margin-top: 1.6666667em;
  margin-bottom: 1.6666667em;
  border-radius: 0.25rem;
  padding-top: 0.6666667em;
  padding-inline-end: 1em;
  padding-bottom: 0.6666667em;
  padding-inline-start: 1em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
  padding-inline-start: 1.5714286em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
  padding-inline-start: 1.5714286em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.2857143em;
  margin-bottom: 0.2857143em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.4285714em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.4285714em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(.ChatMessage_prose-sm__9qsuN > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5714286em;
  margin-bottom: 0.5714286em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(.ChatMessage_prose-sm__9qsuN > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(.ChatMessage_prose-sm__9qsuN > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.1428571em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(.ChatMessage_prose-sm__9qsuN > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(.ChatMessage_prose-sm__9qsuN > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.1428571em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5714286em;
  margin-bottom: 0.5714286em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
  margin-bottom: 1.1428571em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.1428571em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.2857143em;
  padding-inline-start: 1.5714286em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2.8571429em;
  margin-bottom: 2.8571429em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
  line-height: 1.5;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 1em;
  padding-bottom: 0.6666667em;
  padding-inline-start: 1em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.6666667em;
  padding-inline-end: 1em;
  padding-bottom: 0.6666667em;
  padding-inline-start: 1em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8571429em;
  line-height: 1.3333333;
  margin-top: 0.6666667em;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(.ChatMessage_prose-sm__9qsuN > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra :where(.ChatMessage_prose-sm__9qsuN > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra {
  max-width: none;
  margin-top: 0 !important;
  font-size: 0.875rem;
  line-height: 1.625;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra  > *:first-child {
  margin-top: 0 !important;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra  > *:last-child {
  margin-bottom: 0 !important;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra  p {
  margin-bottom: 0.5rem;
  margin-top: 0px;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra  p:first-child {
  margin-top: 0px;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra  p:last-child {
  margin-bottom: 0px;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra  p {
  font-size: 0.875rem;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra  ul, .ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra  ol {
  margin-bottom: 0.5rem;
  margin-top: 0px;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra  code {
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
  padding-left: 0.375rem;
  padding-right: 0.375rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra  strong {
  font-weight: 600;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra  h1, .ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra  h2, .ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra  h3, .ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra  h4, .ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra  h5, .ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra  h6 {
  margin-top: 0px;
  margin-bottom: 0.5rem;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra  h1:first-child, .ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra  h2:first-child, .ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra  h3:first-child, .ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra  h4:first-child, .ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra  h5:first-child, .ChatMessage_assistantMessage__nETAl .ChatMessage_content__wE7wl .ChatMessage_markdown__X6gra  h6:first-child {
  margin-top: 0px;
}
.ChatMessage_assistantMessage__nETAl .ChatMessage_assistantLabel__dwKwr {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}

.ChatMessage_labelName__LpAQZ {
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}

.ChatMessage_labelTime__rLR1r {
  margin-top: 0.125rem;
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}

.ChatMessage_widget__aUFzA {
  margin-top: 1rem;
}
.ChatMessage_widget__aUFzA .ChatMessage_widgetPlaceholder__dOyaq {
  border-radius: 0.5rem;
  border-width: 2px;
  border-style: dashed;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
  padding: 1.5rem;
  text-align: center;
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[9].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[9].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[9].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[9].use[5]!./src/features/chat/ChatInput.module.scss ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.ChatInput_container__GcjiZ {
  position: relative;
  display: flex;
  align-items: flex-end;
}

.ChatInput_container__GcjiZ > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}

.ChatInput_textarea__9pHmc {
  flex: 1 1 0%;
  resize: none;
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.ChatInput_textarea__9pHmc:focus {
  border-color: transparent;
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(204 0 0 / var(--tw-ring-opacity, 1));
}

.ChatInput_textarea__9pHmc {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

.ChatInput_textarea__9pHmc:disabled {
  cursor: not-allowed;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

.ChatInput_textarea__9pHmc {
  min-height: 40px;
  max-height: 120px;
  overflow-y: hidden;
  white-space: pre-wrap;
}

.ChatInput_sendButton__iDYmB {
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(204 0 0 / var(--tw-bg-opacity, 1));
  padding: 0.75rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

.ChatInput_sendButton__iDYmB:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(163 0 0 / var(--tw-bg-opacity, 1));
}

.ChatInput_sendButton__iDYmB:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(204 0 0 / var(--tw-ring-opacity, 1));
  --tw-ring-offset-width: 2px;
}

.ChatInput_sendButton__iDYmB:disabled {
  cursor: not-allowed;
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}
/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[9].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[9].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[9].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[9].use[5]!./src/features/chat/ChatInterface.module.scss ***!
  \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.ChatInterface_container__jJgue {
  display: flex;
  flex: 1 1 0%;
  flex-direction: column;
  overflow: hidden;
}

.ChatInterface_messagesArea__Q6a_Y {
  flex: 1 1 0%;
  overflow-y: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.ChatInterface_emptyState__JQUBJ {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ChatInterface_welcomeCard__zcX_n {
  margin-left: auto;
  margin-right: auto;
  max-width: 42rem;
  text-align: center;
  animation: ChatInterface_fadeInUp__aKVdG 0.5s ease-out;
}

@keyframes ChatInterface_fadeInUp__aKVdG {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ChatInterface_welcomeTitle__hgbjK {
  margin-bottom: 1rem;
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 300;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  line-height: 1.25;
}

.ChatInterface_jarvisName__bulac {
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(204 0 0 / var(--tw-text-opacity, 1));
}

.ChatInterface_welcomeText__eDDBM {
  font-size: 1.125rem;
  line-height: 1.75rem;
  line-height: 1.625;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  margin-left: auto;
  margin-right: auto;
  max-width: 32rem;
}

.ChatInterface_messagesList__cNK3Q {
  margin-left: auto;
  margin-right: auto;
  max-width: 56rem;
}

.ChatInterface_messagesList__cNK3Q > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.ChatInterface_loadingMessage__WKroZ {
  display: flex;
  align-items: center;
}

.ChatInterface_loadingMessage__WKroZ > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}

.ChatInterface_loadingMessage__WKroZ {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  border-left-width: 4px;
  --tw-border-opacity: 1;
  border-color: rgb(204 0 0 / var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.ChatInterface_loadingMessage__WKroZ .ChatInterface_spinner__IXEwK {
  height: 1rem;
  width: 1rem;
}
@keyframes ChatInterface_spin__8uzwc {

  to {
    transform: rotate(360deg);
  }
}
.ChatInterface_loadingMessage__WKroZ .ChatInterface_spinner__IXEwK {
  animation: ChatInterface_spin__8uzwc 1s linear infinite;
  border-radius: 9999px;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(204 0 0 / var(--tw-border-opacity, 1));
  border-top-color: transparent;
}

.ChatInterface_inputArea__2uEBW {
  border-top-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.ChatInterface_inputArea__2uEBW .ChatInterface_poweredBy__TW8Su {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}

.ChatInterface_inputContainer__UclTd {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 56rem;
}
.ChatInterface_inputContainer__UclTd .ChatInterface_logo__HEgFg {
  position: absolute;
  left: 0px;
  top: 50%;
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.ChatInterface_inputContainer__UclTd .ChatInterface_logo__HEgFg img {
  height: 3.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[9].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[9].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[9].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[9].use[5]!./src/features/conversation/ConversationSidebar.module.scss ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.ConversationSidebar_sidebar__Wm8Zm {

    display: flex;

    width: 20rem;

    flex-direction: column;

    border-right-width: 1px;

    --tw-border-opacity: 1;

    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));

    --tw-bg-opacity: 1;

    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1))
}

.ConversationSidebar_header__sWY5t {

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom-width: 1px;

    --tw-border-opacity: 1;

    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));

    padding-left: 1.5rem;

    padding-right: 1.5rem;

    padding-top: 1rem;

    padding-bottom: 1rem
}
.ConversationSidebar_header__sWY5t .ConversationSidebar_title__2cqKC {

    font-size: 1.125rem;

    line-height: 1.75rem;

    font-weight: 500;

    --tw-text-opacity: 1;

    color: rgb(17 24 39 / var(--tw-text-opacity, 1))
}
.ConversationSidebar_header__sWY5t .ConversationSidebar_closeButton__22c0K {

    border-radius: 0.375rem;

    padding: 0.5rem;

    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;

    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);

    transition-duration: 150ms
}
.ConversationSidebar_header__sWY5t .ConversationSidebar_closeButton__22c0K:hover {

    --tw-bg-opacity: 1;

    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1))
}

.ConversationSidebar_newButton__ThT1j {

    padding-left: 1rem;

    padding-right: 1rem;

    padding-top: 1rem;

    padding-bottom: 1rem
}
.ConversationSidebar_newButton__ThT1j .ConversationSidebar_button__3Gk6e {

    display: flex;

    width: 100%;

    align-items: center;

    justify-content: center
}
.ConversationSidebar_newButton__ThT1j .ConversationSidebar_button__3Gk6e > :not([hidden]) ~ :not([hidden]) {

    --tw-space-x-reverse: 0;

    margin-right: calc(0.5rem * var(--tw-space-x-reverse));

    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)))
}
.ConversationSidebar_newButton__ThT1j .ConversationSidebar_button__3Gk6e {

    border-radius: 0.5rem;

    --tw-bg-opacity: 1;

    background-color: rgb(204 0 0 / var(--tw-bg-opacity, 1));

    padding-left: 1rem;

    padding-right: 1rem;

    padding-top: 0.75rem;

    padding-bottom: 0.75rem;

    --tw-text-opacity: 1;

    color: rgb(255 255 255 / var(--tw-text-opacity, 1));

    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;

    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);

    transition-duration: 200ms
}
.ConversationSidebar_newButton__ThT1j .ConversationSidebar_button__3Gk6e:hover {

    --tw-bg-opacity: 1;

    background-color: rgb(163 0 0 / var(--tw-bg-opacity, 1))
}
.ConversationSidebar_newButton__ThT1j .ConversationSidebar_button__3Gk6e:focus {

    outline: 2px solid transparent;

    outline-offset: 2px;

    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);

    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);

    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);

    --tw-ring-opacity: 1;

    --tw-ring-color: rgb(204 0 0 / var(--tw-ring-opacity, 1));

    --tw-ring-offset-width: 2px
}

.ConversationSidebar_list__5PF2s {

    flex: 1 1 0%
}

.ConversationSidebar_list__5PF2s > :not([hidden]) ~ :not([hidden]) {

    --tw-space-y-reverse: 0;

    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));

    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse))
}

.ConversationSidebar_list__5PF2s {

    overflow-y: auto;

    padding-left: 1rem;

    padding-right: 1rem;

    padding-top: 0.5rem;

    padding-bottom: 0.5rem
}

.ConversationSidebar_empty__zgYr4 {

    padding-top: 2rem;

    padding-bottom: 2rem;

    text-align: center;

    --tw-text-opacity: 1;

    color: rgb(107 114 128 / var(--tw-text-opacity, 1))
}

.ConversationSidebar_item__QO1qx {

    display: flex;

    cursor: pointer;

    align-items: center;

    justify-content: space-between;

    border-radius: 0.5rem;

    padding-left: 1rem;

    padding-right: 1rem;

    padding-top: 0.75rem;

    padding-bottom: 0.75rem;

    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;

    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);

    transition-duration: 200ms
}

.ConversationSidebar_item__QO1qx:hover {

    --tw-bg-opacity: 1;

    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1))
}

.ConversationSidebar_item__QO1qx {

    border-width: 1px;

    border-color: transparent
}
.ConversationSidebar_item__QO1qx.ConversationSidebar_active__T7gOM {

    --tw-border-opacity: 1;

    border-color: rgb(204 0 0 / var(--tw-border-opacity, 1));

    --tw-bg-opacity: 1;

    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1))
}
.ConversationSidebar_item__QO1qx .ConversationSidebar_itemContent__L4CZI {

    min-width: 0px;

    flex: 1 1 0%
}
.ConversationSidebar_item__QO1qx .ConversationSidebar_itemContent__L4CZI .ConversationSidebar_itemTitle__2_xUF {

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    font-size: 0.875rem;

    line-height: 1.25rem;

    font-weight: 500;

    --tw-text-opacity: 1;

    color: rgb(17 24 39 / var(--tw-text-opacity, 1))
}
.ConversationSidebar_item__QO1qx .ConversationSidebar_itemContent__L4CZI .ConversationSidebar_itemDate__087Cs {

    margin-top: 0.25rem;

    font-size: 0.75rem;

    line-height: 1rem;

    --tw-text-opacity: 1;

    color: rgb(107 114 128 / var(--tw-text-opacity, 1))
}
.ConversationSidebar_item__QO1qx .ConversationSidebar_deleteButton__dA_Tr {

    border-radius: 0.25rem;

    padding: 0.25rem;

    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;

    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);

    transition-duration: 150ms
}
.ConversationSidebar_item__QO1qx .ConversationSidebar_deleteButton__dA_Tr:hover {

    --tw-bg-opacity: 1;

    background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1))
}
.ConversationSidebar_item__QO1qx .ConversationSidebar_deleteButton__dA_Tr {

    --tw-text-opacity: 1;

    color: rgb(156 163 175 / var(--tw-text-opacity, 1))
}
.ConversationSidebar_item__QO1qx .ConversationSidebar_deleteButton__dA_Tr:hover {

    --tw-text-opacity: 1;

    color: rgb(220 38 38 / var(--tw-text-opacity, 1))
}
