/* /bt-tools/Blazor/ExpandPanel.razor.rz.scp.css */
.expand-panel .toggle-button-container[b-tt36d8hc97] {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
}
.expand-panel .toggle-button-container > div[b-tt36d8hc97] {
  margin-right: 10px;
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
}
.expand-panel .preview-container[b-tt36d8hc97] {
  overflow: hidden;
}
.expand-panel .preview-container .preview-content[b-tt36d8hc97] {
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.expand-panel .expand-container[b-tt36d8hc97] {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.expand-panel .expand-container .expand-content[b-tt36d8hc97] {
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
}
.expand-panel.open .preview-container .preview-content[b-tt36d8hc97] {
  transform: translateX(-100%);
  opacity: 0;
}
.expand-panel.open .expand-container[b-tt36d8hc97] {
  max-height: 1000px;
}
.expand-panel.open .expand-container .expand-content[b-tt36d8hc97] {
  transform: scaleY(1);
  opacity: 1;
}
.expand-panel.closed .preview-container .preview-content[b-tt36d8hc97] {
  transform: translateX(0);
  opacity: 1;
}
.expand-panel.closed .expand-container[b-tt36d8hc97] {
  max-height: 0;
}
.expand-panel.closed .expand-container .expand-content[b-tt36d8hc97] {
  transform: scaleY(0);
  opacity: 0;
}
/* /Components/Chat.razor.rz.scp.css */
.response-table[b-5q6qqfy9ij] {
  font-size: 10px;
  vertical-align: top;
  background-color: #f9f9fb;
  border-collapse: collapse;
  width: 100% !important;
}
.response-table td[b-5q6qqfy9ij] {
  padding: 2px;
  vertical-align: text-top;
}
.response-table th[b-5q6qqfy9ij] {
  font-weight: bold;
}
.response-table th[b-5q6qqfy9ij], .response-table td[b-5q6qqfy9ij] {
  border: 1px solid #e0e0e0;
}
.response-table td:nth-child(1)[b-5q6qqfy9ij] {
  font-weight: 600;
}
/* /Components/MarkdownView.razor.rz.scp.css */
@charset "UTF-8";
/* ───────────────────────────────────────────────────────
   MarkdownView – responsive markdown renderer
   Font sizes use clamp() so they scale smoothly between
   the component's min-width and max-width.
   ─────────────────────────────────────────────────────── */
.markdown-view[b-hz3gi0ier6] {
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-break: break-word;
  padding: 0;
  margin: 0;
  container-type: inline-size;
  border: 1px solid lightgray;
}
.markdown-view[b-hz3gi0ier6]  .my-content {
  aspect-ratio: 8.5/11;
  overflow-y: auto;
  font-size: clamp(6px, 2px + (100cqw - 100px) * 0.028, 16px);
  line-height: 1.65;
  color: inherit;
  line-height: 1.2em;
  padding: 1em;
  margin-bottom: 0.5em !important;
  /* ── Thin scrollbar (standard) ── */
  scrollbar-width: thin;
  scrollbar-color: #c0c0c0 transparent;
  /* ── Thin scrollbar (WebKit / Blink) ── */
  /* inline code */
  /* ── Tables ── */
  /* ── Lists ── */
  /* ── Block-quotes ── */
  /* ── Images ── */
  /* ── Horizontal rules ── */
  /* ── Links ── */
}
.markdown-view[b-hz3gi0ier6]  .my-content ul {
  margin-bottom: 1.4em;
}
.markdown-view[b-hz3gi0ier6]  .my-content::-webkit-scrollbar {
  width: 6px;
}
.markdown-view[b-hz3gi0ier6]  .my-content::-webkit-scrollbar-track {
  background: transparent;
}
.markdown-view[b-hz3gi0ier6]  .my-content::-webkit-scrollbar-thumb {
  background-color: #c0c0c0;
  border-radius: 3px;
}
.markdown-view[b-hz3gi0ier6]  .my-content::-webkit-scrollbar-thumb:hover {
  background-color: #a0a0a0;
}
.markdown-view[b-hz3gi0ier6]  .my-content h1 {
  font-size: 1.3em;
  margin-top: 1em;
  font-weight: 700;
  margin-bottom: 0.2em;
}
.markdown-view[b-hz3gi0ier6]  .my-content h2 {
  font-size: 1.2em;
  margin-top: 1em;
  font-weight: 600;
  margin-bottom: 0.2em;
}
.markdown-view[b-hz3gi0ier6]  .my-content h3 {
  font-size: 1.1em;
  font-weight: 600;
  margin-top: 0.4em;
  margin-bottom: 0.2em;
}
.markdown-view[b-hz3gi0ier6]  .my-content h4, .markdown-view[b-hz3gi0ier6]  .my-content h5, .markdown-view[b-hz3gi0ier6]  .my-content h6 {
  font-size: 1em;
  margin-top: 1em;
  font-weight: 600;
  margin-bottom: 0.2em;
}
.markdown-view[b-hz3gi0ier6]  .my-content p {
  margin: 0 0 0.25em;
}
.markdown-view[b-hz3gi0ier6]  .my-content pre {
  border-radius: 6px;
  background: #f5f5f5;
  line-height: 1.2em !important;
}
.markdown-view[b-hz3gi0ier6]  .my-content code {
  font-family: "Cascadia Code", "Fira Code", Consolas, monospace;
  line-height: 1.2em !important;
}
.markdown-view[b-hz3gi0ier6]  .my-content :not(pre) > code {
  background: #f0f0f0;
  border-radius: 4px;
}
.markdown-view[b-hz3gi0ier6]  .my-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.75em 0;
  font-size: clamp(0.75rem, 1.6cqi, 0.95rem);
  display: block;
  overflow-x: auto;
}
.markdown-view[b-hz3gi0ier6]  .my-content th, .markdown-view[b-hz3gi0ier6]  .my-content td {
  border: 1px solid #ddd;
  padding: 0.4em 0.6em;
  text-align: left;
}
.markdown-view[b-hz3gi0ier6]  .my-content th {
  background: #f8f8f8;
  font-weight: 600;
}
.markdown-view[b-hz3gi0ier6]  .my-content ul, .markdown-view[b-hz3gi0ier6]  .my-content ol {
  padding-left: 1.5em;
  margin: 0 0 0.75em;
}
.markdown-view[b-hz3gi0ier6]  .my-content li + li {
  margin-top: 0.25em;
}
.markdown-view[b-hz3gi0ier6]  .my-content blockquote {
  margin: 0.75em 0;
  padding: 0.5em 1em;
  border-left: 4px solid #ccc;
  background: #fafafa;
  color: #555;
}
.markdown-view[b-hz3gi0ier6]  .my-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.markdown-view[b-hz3gi0ier6]  .my-content hr {
  border: none;
  border-top: 1px solid #ddd;
  margin-top: 0.4em;
  margin-bottom: 0.4em;
}
.markdown-view[b-hz3gi0ier6]  .my-content a {
  color: #0366d6;
  text-decoration: none;
}
.markdown-view[b-hz3gi0ier6]  .my-content a:hover {
  text-decoration: underline;
}
/* /MSP/Components/Client.razor.rz.scp.css */
.hello[b-ydt4wpswxn] {
  background-color: red;
}
/* /Shared/MainLayout.razor.rz.scp.css */
.ml-container[b-ltfoquawru] {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
}
.ml-container .my-toolbar[b-ltfoquawru] {
  flex: 0 1 auto;
  align-self: auto;
}
.ml-container .my-bottom[b-ltfoquawru] {
  flex: 1 1 auto;
  align-self: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  width: 100%;
  overflow: clip !important;
}
.ml-container .my-bottom .my-sidecar[b-ltfoquawru] {
  flex: 0 0 auto; /* default, but explicit */
}
.ml-container .my-bottom .my-body-container[b-ltfoquawru] {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  flex: 1 1 auto;
  align-self: auto;
}
.ml-container .my-bottom .my-body-container .my-body-content[b-ltfoquawru] {
  flex: 1 1 auto; /* grow to fill remaining space */
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  flex: 1 1 auto;
  align-self: auto;
  height: 1px;
  overflow: clip !important;
}
.ml-container .logo[b-ltfoquawru] {
  font-size: 18px;
  font-weight: 900;
  color: gray;
  text-decoration: none;
}

[b-ltfoquawru] .e-control.e-sidebar {
  background-color: rgb(250, 250, 250);
  padding-left: 0 !important;
}
[b-ltfoquawru] .e-control.e-sidebar .oi {
  font-size: 18px;
}
[b-ltfoquawru] .e-control.e-sidebar .nav-item {
  font-size: 14px;
  font-weight: bold;
}
[b-ltfoquawru] .e-control.e-sidebar .nav-item .nav-link {
  padding-left: 9px;
  color: black !important;
  text-decoration: none !important;
  color: inherit !important;
}
[b-ltfoquawru] .e-control.e-sidebar .nav-item .nav-link.active {
  background-color: darkgray;
}
[b-ltfoquawru] .e-control.e-sidebar .nav-item .nav-link:hover {
  background-color: lightgray;
}
[b-ltfoquawru] .e-control.e-sidebar .nav-item .nav-link div:nth-of-type(1) {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
}
[b-ltfoquawru] .e-control.e-sidebar .nav-item .nav-link div:nth-of-type(1) div:nth-of-type(1) {
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
}
[b-ltfoquawru] .e-control.e-sidebar .nav-item .nav-link div:nth-of-type(1) div:nth-of-type(2) {
  order: 0;
  flex: 1 1 auto;
  align-self: auto;
  margin-left: 9px;
}
[b-ltfoquawru] .e-control.e-sidebar.e-open {
  overflow-x: hidden;
  overflow-y: hidden;
}
[b-ltfoquawru] .e-control.e-sidebar.e-open .nav-item {
  overflow: clip;
}
[b-ltfoquawru] .e-control.e-sidebar.e-close {
  overflow-x: clip;
  overflow-y: hidden;
  padding-left: 10px;
}
[b-ltfoquawru] .e-control.e-sidebar.e-close a div:nth-of-type(1) div:nth-of-type(2) {
  display: none;
}

[b-ltfoquawru] .e-toolbar-item.e-tbtn-align.bob button span {
  font-size: 20px !important;
}
/* /Transform/Components/TFDataGrid.razor.rz.scp.css */
.my-container[b-qzjbd6rurj] {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
}

.buttons[b-qzjbd6rurj] {
  flex: 0 1 auto;
  align-self: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
}
.buttons > div[b-qzjbd6rurj], .buttons > button[b-qzjbd6rurj] {
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
  margin-left: 10px;
  margin-right: 10px;
}

.top[b-qzjbd6rurj] {
  flex: 0 1 auto;
  align-self: auto;
}

.my-grid-container[b-qzjbd6rurj] {
  flex: 1 1 auto;
  align-self: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  height: 200px;
}
/* /Transform/Dashboard/TFDashboardElementGauge.razor.rz.scp.css */
*[b-ynj3xte2u3], div[b-ynj3xte2u3], table[b-ynj3xte2u3], tr[b-ynj3xte2u3], td[b-ynj3xte2u3] {
  border: 1px solid green;
}
