.pp-input {
  width: fit-content;
  height: fit-content;
  width: 100%;
  position: relative;
}

.pp-input>.title {
  font-family: "Inter";
  font-weight: 400;
  font-size: 12px;
  color: #2b304f;
  margin-bottom: 6px;
}

.pp-input>.field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 40px;
  padding: 8px 10px;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #ddd;
  transition: border 0.5s;
}

.pp-input>.field:hover {
  border: 1px solid #898da6;
}

.pp-input>.field.active {
  border: 1px solid #141b4d;
}

.pp-input>.field input:-webkit-autofill,
.pp-input>.field input:-webkit-autofill:hover,
.pp-input>.field input:-webkit-autofill:focus,
.pp-input>.field input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.pp-input>.field input:-webkit-autofill:read-only,
.pp-input>.field input:-webkit-autofill:disabled {
  -webkit-box-shadow: 0 0 0 30px #ebebeb inset !important;
}

.pp-input>.field>.decoration {
  display: flex;
  align-items: center;
  margin-right: 5px;
  gap: 5px;
}

.pp-input>.field>input {
  border: 0;
  width: 100%;
  font-family: "Inter";
  font-weight: 400;
  font-size: 14px;
  color: #2b304f;
  background-color: transparent;
}

.pp-input>.field>input::placeholder {
  color: #bbb;
}

.pp-input>.field>.icons {
  display: flex;
  font-size: 20px;
  gap: 5px;
  color: #141b4d;
}

.pp-input>.field>.icons>.ppi {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}

.pp-input>.field>.icons>.ppi:hover {
  font-weight: 700;
}

.pp-input>.field.required {
  border-left: 3px solid #ffb800;
}

.pp-input>.field.error {
  border-width: 2px;
  border-color: #f44336;
  border-style: solid;
}

.pp-input>.suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 500;
  background-color: #fff;
  border: 1px solid #d9dce6;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(20, 27, 77, 0.18);
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
}

.pp-input>.suggestions>.suggestion {
  cursor: pointer;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.4;
  color: #2B304F;
  border-bottom: 1px solid #f5f5f5;
}

.pp-input>.suggestions>.suggestion:last-child {
  border-bottom: none;
}

.pp-input>.suggestions>.suggestion:hover {
  background-color: #E2E6F3;
  color: #20203F;
}

.pp-input>.suggestions>.suggestion b {
  font-weight: 700;
}

.pp-input>.suggestions>.suggestion.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  color: #666;
  cursor: default;
  border-bottom: none;
}

.pp-input>.suggestions::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: #eee;
  z-index: 99;
}

.pp-input>.suggestions::-webkit-scrollbar-thumb {
  background: #cccccf;
  border-radius: 4px;
}

.pp-input>.suggestions::-webkit-scrollbar-thumb:hover {
  background: #ddd;
}

.pp-input>.suggestions::-webkit-scrollbar-track {
  border-radius: 4px;
}

.pp-input>.help {
  width: auto;
  height: fit-content;
  justify-content: center;
  position: absolute;
  overflow: visible;
  display: none;
}

.pp-input>.help>i {
  z-index: 7501;
  position: absolute;
  font-size: 1.2rem;
  color: #e2e6f3;
  transform: translate(20px, -8px);
}

.pp-input>.help>.main {
  width: inherit;
  z-index: 7500;
  position: absolute;
  transform: translate(0, 4px);
  display: flex;
  justify-content: flex-start;
  overflow: visible;
}

.pp-input>.help>.main>.content {
  position: absolute;
  width: max-content;
  max-width: 240px;
  height: auto;
  background-color: #e2e6f3;
  padding: 8px 11px;
  box-shadow: 0px 0px 3px rgba(32, 47, 47, 0.36);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  word-break: break-word;
  color: #2b304f !important;
}

.pp-input>.help>.main>.content .line:not(:last-child) {
  margin-bottom: 8px;
}

.pp-input.debug {
  background-color: green;
}

.pp-input.debug .title {
  background-color: red;
}

.pp-input.debug .field {
  background-color: blue;
}

.pp-input:hover .help {
  display: flex;
}

.pp-input.disabled>.field,
.pp-input.readonly>.field {
  background-color: #ebebeb;
}

.pp-input.disabled>.field>.value,
.pp-input.readonly>.field>.value {
  color: #777;
}

.pp-input.disabled>.field>.icons,
.pp-input.readonly>.field>.icons {
  color: #777;
}

.pp-input.disabled>.field>.icons>.ppi:hover,
.pp-input.readonly>.field>.icons>.ppi:hover {
  font-weight: normal;
}

.pp-input.disabled {
  cursor: not-allowed;
}

.pp-input.disabled>.field>.value {
  cursor: inherit;
}

.pp-input.disabled>.field:hover {
  border: 1px solid #fff;
}

.pp-input.readonly>.field>.value {
  color: #141b4d;
}
.pp-iconlink {
  width: 36px;
  height: 36px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 24px;
}
.pp-iconlink.small {
  width: 28px;
  height: 28px;
  border-radius: 14px;
  font-size: 20px;
}
.pp-iconlink.big {
  width: 42px;
  height: 42px;
  border-radius: 21px;
  font-size: 26px;
}
.pp-iconlink > .badge {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  min-width: 19px;
  height: 14px;
  padding: 0 2px;
  border-radius: 7px;
  top: 0;
  left: 21px;
  right: 0;
}
.pp-iconlink > .badge > span {
  font-size: 10px;
  font-weight: bold;
}
.pp-iconlink > .tooltip {
  display: none;
  width: inherit;
  position: absolute;
  z-index: 7000;
}
.pp-iconlink > .tooltip > .body {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(38px);
  filter: drop-shadow(0px 0px 3px rgba(32, 47, 47, 0.36));
}
.pp-iconlink > .tooltip > .body > .arrow {
  z-index: 7501;
  align-self: center;
  width: 14px;
  height: 14px;
  background-color: #e2e6f3;
  transform: rotate(45deg) translate(5px, 5px);
}
.pp-iconlink > .tooltip > .body .content {
  align-self: center;
  z-index: 7500;
  width: max-content;
  max-width: 230px;
  height: auto;
  background-color: #e2e6f3;
  border: 0;
  border-radius: 4px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 400;
  color: #2b304f;
}
.pp-iconlink > .tooltip > .body .content.left {
  align-self: flex-start;
}
.pp-iconlink > .tooltip > .body .content.right {
  align-self: flex-end;
}
.pp-iconlink:hover {
  background-color: #cccccf;
}
.pp-iconlink:hover .tooltip {
  display: block;
}
.pp-iconlink.disabled {
  color: #666;
  cursor: not-allowed;
}
.pp-iconlink.disabled:hover {
  background-color: #eee;
}

/* Tooltip portaled to document.body so grids, modals and clipped parents cannot hide it. */
.pp-iconlink-portal-tooltip {
  position: fixed;
  z-index: 2147483000;
  pointer-events: none;
  width: max-content;
  max-width: min(230px, calc(100vw - 16px));
  filter: drop-shadow(0px 0px 3px rgba(32, 47, 47, 0.36));
}

.pp-iconlink-portal-tooltip__content {
  position: relative;
  z-index: 2;
  width: max-content;
  max-width: min(230px, calc(100vw - 16px));
  height: auto;
  background-color: #e2e6f3;
  background-color: var(--background-lightest, #e2e6f3);
  border-radius: 4px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 400;
  color: #2b304f;
  color: var(--text-default, #2b304f);
  word-break: break-word;
}

.pp-iconlink-portal-tooltip__arrow {
  position: absolute;
  z-index: 1;
  width: 10px;
  height: 10px;
  background-color: #e2e6f3;
  background-color: var(--background-lightest, #e2e6f3);
  transform: rotate(45deg);
}

.pp-iconlink-portal-tooltip.placement-top .pp-iconlink-portal-tooltip__arrow {
  bottom: -4px;
  left: 50%;
  margin-left: -5px;
}

.pp-iconlink-portal-tooltip.placement-bottom .pp-iconlink-portal-tooltip__arrow {
  top: -4px;
  left: 50%;
  margin-left: -5px;
}

.pp-iconlink-portal-tooltip.placement-left .pp-iconlink-portal-tooltip__arrow {
  right: -4px;
  top: 50%;
  margin-top: -5px;
}

.pp-iconlink-portal-tooltip.placement-right .pp-iconlink-portal-tooltip__arrow {
  left: -4px;
  top: 50%;
  margin-top: -5px;
}

@keyframes append {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.pp-modal {
  background-color: rgba(0, 0, 0, 0.25);
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: append 0.2s linear;
}

.pp-modal>.body {
  /* 100vw inclui a barra de rolagem e encostava o modal nas duas bordas; a folga
     mantém o modal inteiro dentro da área visível em telas estreitas. */
  max-width: calc(100vw - 32px);
  min-width: min(300px, calc(100vw - 32px));
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.25);
  padding: 24px;
  gap: 12px;
  border-radius: 4px;
}

.pp-modal>.body>.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pp-modal>.body>.header>.title {
  font-family: "Inter";
  font-weight: 200;
  font-size: 22px;
  color: #2b304f;
  flex: 1 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pp-modal>.body>.content {
  overflow-y: auto;
  overflow-x: hidden;
  /* Sem isto, um conteúdo alto pode recusar-se a encolher dentro do max-height do
     modal e ser cortado em vez de rolar. */
  min-height: 0;
}

.pp-modal>.body>.content::-webkit-scrollbar {
  width: 8px;
  height: 0;
}

.pp-modal>.body>.content::-webkit-scrollbar-thumb {
  background: #cccccf;
  height: 8px;
  border-radius: 4px;
}

.pp-modal>.body>.content::-webkit-scrollbar-thumb:hover {
  background: #ddd;
}

.pp-modal>.body>.content::-webkit-scrollbar-track {
  border-radius: 4px;
}

.pp-modal>.body>.content>.functions,
.pp-modal>.body>.content .form .functions {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  gap: 16px;
}

.pp-modal>.body>.content>.loading {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-modal>.body>.functions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.pp-tooltip {
  width: fit-content;
  height: fit-content;
}
.pp-tooltip > .body {
  width: 100%;
  height: fit-content;
  justify-content: center;
  position: fixed;
  overflow: visible;
  display: flex;
  z-index: 10000;
}
.pp-tooltip > .body > i {
  z-index: 7501;
  position: absolute;
  font-size: 1.2rem;
  color: #e2e6f3;
  transform: translate(0, -8px);
}
.pp-tooltip > .body > .main {
  width: inherit;
  z-index: 7500;
  position: absolute;
  transform: translate(0, 4px);
  display: flex;
  justify-content: center;
  overflow: visible;
}
.pp-tooltip > .body > .main > .content {
  position: absolute;
  width: max-content;
  max-width: 400px;
  height: auto;
  background-color: #e2e6f3;
  padding: 8px 11px;
  box-shadow: 0px 0px 3px rgba(32, 47, 47, 0.36);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  word-break: break-word;
  color: #2b304f !important;
}
.pp-tooltip > .body > .main > .content .line:not(:last-child) {
  margin-bottom: 8px;
}
.pp-tooltip > .body.left {
  justify-content: flex-start;
}
.pp-tooltip > .body.left > i {
  padding-left: 5px;
}
.pp-tooltip > .body.rigth {
  justify-content: flex-end;
}
.pp-tooltip > .body.rigth > i {
  padding-right: 5px;
}
.pp-tooltip > .body.top {
  flex-direction: column-reverse;
  justify-content: flex-end;
  align-items: center;
}
.pp-tooltip > .body.top > .main {
  transform: translateY(calc(100% - 7px));
  align-items: end;
}
.pp-tooltip > .body.top > i {
  transform: rotate(180deg) translateY(calc(100% - 6px));
}
.pp-tooltip.debug {
  background-color: red;
}
.pp-tooltip.debug .body > .main {
  background-color: blue;
}

.pp-tooltip > .body > .main.left {
  justify-content: flex-start;
}
.pp-tooltip > .body > .main.center {
  justify-content: center;
}
.pp-tooltip > .body > .main.rigth {
  justify-content: flex-end;
}

/* Tooltip portaled to document.body so overflow/transform containers cannot clip it. */
.pp-tooltip-portal {
  position: fixed;
  z-index: 2147483000;
  display: flex;
  flex-direction: column;
  width: max-content;
  max-width: min(400px, calc(100vw - 16px));
  pointer-events: auto;
  filter: drop-shadow(0px 0px 3px rgba(32, 47, 47, 0.36));
}

.pp-tooltip-portal__arrow {
  align-self: center;
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  background-color: #e2e6f3;
  transform: rotate(45deg);
  margin-bottom: -5px;
  z-index: 1;
}

.pp-tooltip-portal__main {
  position: relative;
  display: flex;
  width: 100%;
  z-index: 2;
}

.pp-tooltip-portal__content {
  position: relative;
  width: max-content;
  max-width: min(400px, calc(100vw - 16px));
  height: auto;
  background-color: #e2e6f3;
  padding: 8px 11px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  word-break: break-word;
  color: #2b304f !important;
}

.pp-tooltip-portal.left > .main,
.pp-tooltip-portal.left > .pp-tooltip-portal__main {
  justify-content: flex-start;
}

.pp-tooltip-portal.center > .main,
.pp-tooltip-portal.center > .pp-tooltip-portal__main {
  justify-content: center;
}

.pp-tooltip-portal.right > .main,
.pp-tooltip-portal.right > .pp-tooltip-portal__main {
  justify-content: flex-end;
}

.pp-tooltip-portal.top {
  flex-direction: column-reverse;
}

.pp-tooltip-portal.top > .pp-tooltip-portal__arrow {
  margin-top: -5px;
  margin-bottom: 0;
}
.access-card-help__trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.access-card-help__trigger:focus-visible {
    outline: 2px solid #173192;
    outline-offset: 2px;
    border-radius: 4px;
}

.access-requirements-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 280px;
    max-width: 420px;
    color: #2B304F;
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    line-height: 1.4;
}

.lc-tooltip-portal .content.access-requirements-tooltip {
    box-sizing: border-box;
    width: min(420px, calc(100vw - 16px));
    min-width: min(280px, calc(100vw - 16px));
    max-width: min(420px, calc(100vw - 16px));
    max-height: calc(100vh - 16px);
    overflow-y: auto;
}

.lc-tooltip-portal .content.access-requirements-tooltip > .access-requirements-content {
    width: 100%;
    min-width: 0;
    max-width: none;
}

/*
 * Modal detalhado (PPModal size="large", 1200px).
 *
 * O conteúdo herda um flex column de `.access-requirements-content`: dentro do modal isso
 * empilhava os 5 grupos de provider e os 12 requisitos numa coluna única de 1200px de
 * largura, com várias telas de altura — muito espaço horizontal ocioso e quase nenhum dado
 * visível de uma vez. Aqui os grupos passam a fluir em colunas que acompanham a largura
 * disponível, de modo que o conjunto caiba no que a tela mostra.
 */
.access-requirements-content--detailed {
    max-width: none;
    min-width: 0;
    display: block;
    /* Colunas em vez de grid: os grupos têm alturas bem diferentes (Graph tem 4
       requisitos, os demais 2) e o grid alinha tudo pela linha mais alta, deixando
       buracos. As colunas empacotam os grupos de forma contínua. */
    column-width: 340px;
    column-gap: 16px;
}

/* A introdução descreve o card inteiro: ocupa a faixa toda, acima dos grupos. */
.access-requirements-content--detailed > .access-requirements-intro {
    column-span: all;
    margin-bottom: 12px;
}

.access-requirements-content--detailed > .access-requirements-provider {
    min-width: 0;
    margin: 0 0 12px;
    padding: 10px 12px;
    border: 1px solid #E2E6F3;
    border-radius: 6px;
    background: #FCFDFF;
    /* Um grupo nunca deve ser partido entre duas colunas. */
    break-inside: avoid;
    page-break-inside: avoid;
}

/* Sem divisória sobrando no fim de cada cartão de provider. */
.access-requirements-content--detailed .access-requirement-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.access-requirements-content--detailed > .access-requirements-empty {
    grid-column: 1 / -1;
}

.access-requirements-intro {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-bottom: 8px;
    border-bottom: 1px solid #E2E6F3;
}

.access-requirements-intro span,
.access-requirement-muted,
.page-access-help__muted {
    color: #6F768B;
}

.access-requirements-provider {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.access-requirements-provider h4,
.page-access-help__provider h4 {
    margin: 0;
    color: #173192;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.access-requirement-row {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    grid-gap: 7px;
    gap: 7px;
    padding: 8px 0;
    border-bottom: 1px solid #EEF1F6;
}

.access-requirement-row__status {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 2px;
    color: #8790A5;
    font-size: 18px;
}

.access-requirement-row--granted .access-requirement-row__status { color: #238B57; }
.access-requirement-row--missing .access-requirement-row__status,
.access-requirement-row--partial .access-requirement-row__status { color: #B7791F; }
.access-requirement-row--error .access-requirement-row__status { color: #C53030; }

.access-requirement-row__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.access-requirement-row__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.access-requirement-row__heading strong { min-width: 0; }

.access-requirement-badge,
.page-access-help__status {
    flex: 0 0 auto;
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
}

.access-requirement-badge--granted,
.page-access-help__status--granted { background: #E6F4EA; color: #1E7E45; }
.access-requirement-badge--missing,
.access-requirement-badge--partial,
.page-access-help__status--missing,
.page-access-help__status--partial { background: #FDF3DA; color: #9C6A18; }
.access-requirement-badge--verified,
.access-requirement-badge--notChecked { background: #EEF1F6; color: #65708A; }
.access-requirement-badge--code-inferred,
.access-requirement-badge--unknown { background: #FFF4E5; color: #9C6A18; }
.access-requirement-badge--error,
.page-access-help__status--error { background: #FDECEC; color: #B83232; }

.access-requirement-permissions,
.page-access-help__permissions {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.access-requirement-permissions code,
.page-access-help__permissions code {
    padding: 2px 4px;
    border: 1px solid #DCE2EF;
    border-radius: 3px;
    background: #F8FAFD;
    color: #173192;
    font-family: Consolas, monospace;
    font-size: 10px;
    overflow-wrap: anywhere;
}

.access-requirement-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
    color: #8B90A3;
    font-size: 10px;
}

.access-requirement-note {
    color: #7A5719;
    font-size: 10px;
}

.access-requirement-links,
.page-access-help__requirement a {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.access-requirement-links a,
.page-access-help__requirement a {
    color: #173192;
    font-size: 10px;
    text-decoration: underline;
}

.access-requirements-empty { color: #6F768B; }

.access-requirement-state {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 10px 12px;
    border: 1px solid #E2E6F3;
    border-radius: 6px;
    background: #F8FAFD;
    color: #2B304F;
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
}

.access-requirement-state > svg { flex: 0 0 auto; margin-top: 2px; color: #65708A; font-size: 20px; }
.access-requirement-state--granted { border-color: #BFE2CA; background: #F1FAF4; }
.access-requirement-state--granted > svg { color: #238B57; }
.access-requirement-state--missing,
.access-requirement-state--partial { border-color: #F0D79E; background: #FFF8E8; }
.access-requirement-state--missing > svg,
.access-requirement-state--partial > svg { color: #B7791F; }
.access-requirement-state--error { border-color: #F2C1C1; background: #FFF4F4; }
.access-requirement-state--error > svg { color: #C53030; }
.access-requirement-state__body { display: flex; flex-wrap: wrap; align-items: baseline; gap: 3px 7px; min-width: 0; }
.access-requirement-state__body > span:not(.access-requirement-state__label) { flex-basis: 100%; color: #5D6680; }
.access-requirement-state__label { color: #65708A; font-size: 10px; font-weight: 600; }
.access-requirement-state__body button { padding: 2px 6px; border: 1px solid #C9D2E5; border-radius: 4px; background: #fff; color: #173192; cursor: pointer; font-size: 10px; }
.access-requirement-state__body button:focus-visible { outline: 2px solid #173192; outline-offset: 2px; }
.access-requirement-state__spinner { animation: access-requirement-spin 1s linear infinite; }

.card-access-empty-state {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    min-width: 0;
    min-height: 0;
    justify-content: center;
    overflow: hidden;
    color: #2B304F;
    font-family: 'Ubuntu', sans-serif;
}

.card-access-empty-state--finops-resume {
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
}

.card-access-empty-state--finops-resume .access-requirement-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: min(100%, 320px);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: center;
    overflow: visible;
}

.card-access-empty-state--finops-resume .access-requirement-state > svg {
    width: 24px;
    height: 24px;
    margin: 0 0 2px;
    font-size: 24px;
}

.card-access-empty-state--finops-resume .access-requirement-state__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
    overflow: visible;
}

.card-access-empty-state--finops-resume .access-requirement-state__body strong {
    color: #2B304F;
    font-size: 13px;
    line-height: 1.2;
}

.card-access-empty-state--finops-resume .access-requirement-state__label {
    display: none;
}

.card-access-empty-state--finops-resume .access-requirement-state__body > span:not(.access-requirement-state__label) {
    flex-basis: auto;
    width: 100%;
    color: #6F768B;
    font-size: 11px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.card-access-empty-state--finops-resume:not(.card-access-empty-state--compact) .access-requirement-state__body > span:not(.access-requirement-state__label) {
    max-width: 280px;
}

.card-access-empty-state .access-requirement-state {
    box-sizing: border-box;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

.card-access-empty-state .access-requirement-state__body {
    min-width: 0;
    overflow: hidden;
}

.card-access-empty-state .access-requirement-state__body > span {
    overflow-wrap: anywhere;
}

.card-access-empty-state--compact {
    justify-content: center;
}

.card-access-empty-state--finops-resume.card-access-empty-state--compact {
    padding: 4px 10px;
}

.card-access-empty-state--finops-resume.card-access-empty-state--compact .access-requirement-state {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 6px;
    text-align: left;
}

.card-access-empty-state--finops-resume.card-access-empty-state--compact .access-requirement-state > svg {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin: 0;
    font-size: 16px;
}

.card-access-empty-state--finops-resume.card-access-empty-state--compact .access-requirement-state__body {
    align-items: flex-start;
    gap: 2px;
    min-width: 0;
}

.card-access-empty-state--finops-resume.card-access-empty-state--compact .access-requirement-state__body strong {
    font-size: 11px;
}

.card-access-empty-state--compact .access-requirement-state {
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    font-size: 11px;
}

.card-access-empty-state--compact .access-requirement-state > svg {
    margin-top: 0;
    font-size: 16px;
}

.card-access-empty-state--compact .access-requirement-state__body {
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
    overflow: hidden;
}

.card-access-empty-state--compact .access-requirement-state__label {
    display: none;
}

.card-access-empty-state--compact .access-requirement-state__body > span:not(.access-requirement-state__label) {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@keyframes access-requirement-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-access-help {
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: #2B304F;
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.45;
}

.page-access-help__intro {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border-radius: 6px;
    background: #F1F5FB;
}

.page-access-help__intro-icon { flex: 0 0 auto; color: #173192; font-size: 26px; }
.page-access-help__intro div { display: flex; flex-direction: column; gap: 4px; }
.page-access-help__intro span { color: #5D6680; font-size: 12px; }

.page-access-help__section { display: flex; flex-direction: column; gap: 8px; }
.page-access-help__section--warning { padding: 10px 12px; border-left: 3px solid #C58A24; background: #FFF8F0; }
.page-access-help__section--tips { padding: 10px 12px; border-left: 3px solid #2E8B57; background: #F1FAF4; }
.page-access-help__section-heading { display: flex; align-items: center; gap: 7px; color: #173192; }
.page-access-help__section-heading svg { flex: 0 0 auto; font-size: 20px; }
.page-access-help__section-heading h3 { margin: 0; font-size: 14px; }
.page-access-help__section p { margin: 0; font-size: 12px; }
.page-access-help__section ul { margin: 0; padding-left: 20px; color: #5D6680; font-size: 12px; }
.page-access-help__provider { display: flex; flex-direction: column; gap: 4px; }

.page-access-help__requirement {
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr);
    grid-gap: 10px;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid #EEF1F6;
}

.page-access-help__status {
    display: flex;
    align-items: center;
    align-self: start;
    gap: 4px;
}

.page-access-help__status svg { font-size: 15px; }
.page-access-help__requirement > div:last-child { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.page-access-help__requirement small { color: #8B90A3; font-size: 10px; }

.page-access-help__matrix-wrap { overflow-x: auto; }
.page-access-help__matrix { width: 100%; border-collapse: collapse; font-size: 11px; }
.page-access-help__matrix th,
.page-access-help__matrix td { padding: 8px; border: 1px solid #E2E6F3; text-align: left; vertical-align: top; }
.page-access-help__matrix thead th { background: #F1F5FB; color: #173192; font-weight: 600; }
.page-access-help__matrix tbody th { min-width: 150px; font-weight: 600; }
.page-access-help__matrix td { color: #5D6680; }

@media (max-width: 700px) {
    .access-requirement-row__heading { flex-direction: column; gap: 4px; }
    .page-access-help__requirement { grid-template-columns: minmax(0, 1fr); gap: 4px; }
    .page-access-help__status { justify-self: start; }
}
.container {
  position: relative;
  max-width: 100%;
  margin: auto;
  background-color: #fafafa;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.container > .topbar {
  background-color: var(--primary);
  width: 100%;
  height: 52px;
  position: relative;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.container > .topbar > .left {
  color: #fff;
  display: flex;
}
.container > .topbar > .left .shadow {
  position: absolute;
  width: 20px;
  height: 100%;
  transform: translateX(62px);
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0), var(--primary));
  pointer-events: none;
}
.container > .topbar > .left > .nav {
  width: 10px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
}
.container > .topbar > .left > .nav:hover i {
  font-weight: 700;
}
.container > .topbar > .left > .items {
  display: flex;
  flex-direction: row;
  gap: 8px;
  overflow: hidden;
  scroll-behavior: smooth;
  padding-right: 10px;
}
.container > .topbar > .left > .items > .item,
.container > .topbar > .left > .items .pp-tooltip .item,
.container > .topbar > .left .hamburger > .item,
.container > .topbar > .left .hamburger .pp-tooltip .item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 52px;
  min-width: 52px;
  font-family: Inter;
  font-weight: 700;
  padding: 10px;
  cursor: pointer;
  color: #fff;
}
.container > .topbar > .left > .items > .item > .title,
.container > .topbar > .left > .items .pp-tooltip .item > .title,
.container > .topbar > .left .hamburger > .item > .title,
.container > .topbar > .left .hamburger .pp-tooltip .item > .title {
  font-size: 14px;
  font-weight: 700;
  margin-left: 10px;
}
.container > .topbar > .left > .items > .item > i,
.container > .topbar > .left > .items .pp-tooltip .item > i,
.container > .topbar > .left .hamburger > .item > i,
.container > .topbar > .left .hamburger .pp-tooltip .item > i {
  font-size: 32px;
  text-align: center;
  opacity: 0.8;
  font-weight: 100;
}
.container > .topbar > .left > .items > .item:hover:not(.selected),
.container > .topbar > .left > .items .pp-tooltip .item:hover:not(.selected),
.container > .topbar > .left .hamburger > .item:hover:not(.selected),
.container > .topbar > .left .hamburger .pp-tooltip .item:hover:not(.selected) {
  background-color: var(--primary-hover);
}
.container > .topbar > .left > .items > .item .ppi-menu,
.container > .topbar > .left > .items .pp-tooltip .item .ppi-menu,
.container > .topbar > .left .hamburger > .item .ppi-menu,
.container > .topbar > .left .hamburger .pp-tooltip .item .ppi-menu {
  opacity: 1;
}
.container > .topbar > .left > .items > .item.selected,
.container > .topbar > .left > .items .pp-tooltip .item.selected,
.container > .topbar > .left .hamburger > .item.selected,
.container > .topbar > .left .hamburger .pp-tooltip .item.selected {
  opacity: 1;
  background-color: var(--dark);
  color: #fff;
  cursor: default;
  width: max-content;
}
.container > .topbar > .left > .items > .item.selected > i,
.container > .topbar > .left > .items .pp-tooltip .item.selected > i,
.container > .topbar > .left .hamburger > .item.selected > i,
.container > .topbar > .left .hamburger .pp-tooltip .item.selected > i {
  opacity: 1;
  color: var(--light);
}
.container > .topbar > .right {
  display: flex;
  gap: 0px;
  align-items: center;
  width: fit-content;
  z-index: 100;
  padding: 0 0 0 10px;
}
.container > .topbar > .right::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 100%;
  transform: translateX(-30px);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), var(--primary));
  pointer-events: none;
}
.container > .topbar > .right > .nav {
  color: #fff;
  width: 10px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  transform: translateX(-10px);
}
.container > .topbar > .right > .nav:hover i {
  font-weight: 700;
}
.container > .topbar > .right > .item,
.container > .topbar > .right .pp-tooltip .item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  width: 52px;
  font-family: Inter;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
}
.container > .topbar > .right > .item > i,
.container > .topbar > .right .pp-tooltip .item > i {
  font-size: 26px;
  text-align: center;
}
.container > .topbar > .right > .item:hover,
.container > .topbar > .right .pp-tooltip .item:hover {
  background-color: var(--primary-hover);
}
.container > .topbar > .right > .item .avatar,
.container > .topbar > .right .pp-tooltip .item .avatar {
  width: 28px;
  height: 28px;
  border: 1px solid #fff;
  border-radius: 14px;
}
.container > .topbar > .debug {
  padding: 5px;
  border: 1px solid #bbb;
  position: fixed;
  right: 10px;
  top: 200px;
  display: none;
  flex-direction: column;
}
.container > .topbar.debug {
  background-color: yellow;
}
.container > .topbar.debug > .left {
  background-color: red;
}
.container > .topbar.debug > .left .nav {
  background-color: green;
}
.container > .topbar.debug > .right {
  background-color: blue;
}
.container > .topbar.debug > .right .nav {
  background-color: green;
}
.container > .topbar.debug > .debug {
  display: flex;
}
.container > .toolbar {
  position: relative;
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: 4px 4px 18px rgba(58, 79, 135, 0.32);
  z-index: 10;
}
.container > .toolbar > .left {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
.container > .toolbar > .left > .nav {
  color: #141b4d;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 0 0 8px;
}
.container > .toolbar > .left > .nav:hover i {
  font-weight: 700;
}
.container > .toolbar > .left > .items {
  display: flex;
  align-items: center;
  padding: 0 25px 0 16px;
  width: fit-content;
  overflow: hidden;
  scroll-behavior: smooth;
}
.container > .toolbar > .left > .items > span.item {
  display: flex;
  align-items: center;
  background-color: #fff;
  height: 24px;
  border-radius: 4px;
  padding: 0 12px;
  color: #2b304f;
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
  white-space: nowrap;
}
.container > .toolbar > .left > .items > span.item:hover {
  background-color: #f5f5f5;
}
.container > .toolbar > .left > .items > span.item.active {
  cursor: auto;
  background-color: var(--emphasis);
  color: #fff;
}
.container > .toolbar > .right {
  display: flex;
  align-items: center;
  color: #141b4d;
  height: 48px;
  padding: 12px;
  width: fit-content;
  box-shadow: -30px -5px 10px #fff;
}
.container > .toolbar > .right > .nav {
  color: #141b4d;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: -10px;
  margin-right: 20px;
}
.container > .toolbar > .right > .nav:hover i {
  font-weight: 700;
}
.container > .toolbar > .right > * {
  transition: width 0.2s ease-in-out;
}
.container > .toolbar.debug {
  background-color: yellow;
}
.container > .toolbar.debug > .left {
  background-color: red;
}
.container > .toolbar.debug > .right {
  background-color: blue;
}
.container > .page {
  padding: 10px;
  width: 100%;
  height: calc(100vh - 100px);
  overflow-x: hidden;
  overflow-y: auto;
}
.container > .page::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: #eee;
  z-index: 99;
}
.container > .page::-webkit-scrollbar-thumb {
  background: #cccccf;
  border-radius: 4px;
}
.container > .page::-webkit-scrollbar-thumb:hover {
  background: #ddd;
}
.container > .page::-webkit-scrollbar-track {
  border-radius: 4px;
}
.pp-textarea {
  width: fit-content;
  height: fit-content;
  width: 100%;
}
.pp-textarea > .title {
  font-family: "Inter";
  font-weight: 400;
  font-size: 12px;
  color: #2b304f;
  margin-bottom: 6px;
}
.pp-textarea > .field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 40px;
  height: fit-content;
  padding: 8px 10px;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #fff;
  transition: border 0.5s;
  position: relative;
  resize: vertical;
  overflow: hidden;
}
.pp-textarea > .field:hover {
  border: 1px solid #898da6;
}
.pp-textarea > .field.active {
  border: 1px solid #141b4d;
}
.pp-textarea > .field > .decoration {
  display: flex;
  align-items: center;
  margin-right: 5px;
  gap: 5px;
}
.pp-textarea > .field > textarea {
  border: 0;
  width: 100%;
  height: 100%;
  font-family: "Inter";
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #2b304f;
  background-color: transparent;
  resize: none;
}
.pp-textarea > .field > textarea::placeholder {
  color: #bbb;
}
.pp-textarea > .field > textarea::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: #eee;
  z-index: 99;
  cursor: pointer !important;
}
.pp-textarea > .field > textarea::-webkit-scrollbar-thumb {
  background: #cccccf;
  border-radius: 4px;
}
.pp-textarea > .field > textarea::-webkit-scrollbar-thumb:hover {
  background: #ddd;
}
.pp-textarea > .field > textarea::-webkit-scrollbar-track {
  border-radius: 4px;
}
.pp-textarea > .field > .icons {
  display: flex;
  align-items: center;
  font-size: 20px;
  gap: 5px;
  color: #141b4d;
  margin-left: 5px;
}
.pp-textarea > .field > .icons > .ppi {
  -webkit-user-select: none;
          user-select: none;
  cursor: pointer;
}
.pp-textarea > .field > .icons > .ppi:hover {
  font-weight: 700;
}
.pp-textarea > .field.required {
  border-left: 3px solid #ffb800;
}
.pp-textarea > .field.error {
  border-width: 2px;
  border-color: #f44336;
  border-style: solid;
}
.pp-textarea > .help {
  width: auto;
  height: fit-content;
  justify-content: center;
  position: absolute;
  overflow: visible;
  display: none;
}
.pp-textarea > .help > i {
  z-index: 7501;
  position: absolute;
  font-size: 1.2rem;
  color: #e2e6f3;
  transform: translate(20px, -8px);
}
.pp-textarea > .help > .main {
  width: inherit;
  z-index: 7500;
  position: absolute;
  transform: translate(0, 4px);
  display: flex;
  justify-content: flex-start;
  overflow: visible;
}
.pp-textarea > .help > .main > .content {
  position: absolute;
  width: max-content;
  max-width: 240px;
  height: auto;
  background-color: #e2e6f3;
  padding: 8px 11px;
  box-shadow: 0px 0px 3px rgba(32, 47, 47, 0.36);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  word-break: break-word;
  color: #2b304f !important;
}
.pp-textarea > .help > .main > .content .line:not(:last-child) {
  margin-bottom: 8px;
}
.pp-textarea.debug {
  background-color: green;
}
.pp-textarea.debug .title {
  background-color: red;
}
.pp-textarea.debug .field {
  background-color: blue;
}
.pp-textarea:hover .help {
  display: flex;
}
.pp-textarea.disabled > .field, .pp-textarea.readonly > .field {
  background-color: #ebebeb;
}
.pp-textarea.disabled > .field > .value, .pp-textarea.readonly > .field > .value {
  color: #777;
}
.pp-textarea.disabled > .field > .icons, .pp-textarea.readonly > .field > .icons {
  color: #777;
}
.pp-textarea.disabled > .field > .icons > .ppi:hover, .pp-textarea.readonly > .field > .icons > .ppi:hover {
  font-weight: normal;
}
.pp-textarea.disabled {
  cursor: not-allowed;
}
.pp-textarea.disabled > .field > .value {
  cursor: inherit;
}
.pp-textarea.disabled > .field:hover {
  border: 1px solid #fff;
}
.pp-textarea.readonly > .field > .value {
  color: #141b4d;
}
.pp-textarea.debug > .field {
  background-color: #5467e4;
}
.pp-textarea.debug > .field > textarea {
  background-color: #ffb800;
}
.pp-dropmenu {
  position: absolute;
  top: 52px;
  width: fit-content;
  display: flex;
}
.pp-dropmenu.left {
  flex-direction: row;
}
.pp-dropmenu.left > .subitems {
  margin-left: -1px;
}
.pp-dropmenu.right {
  flex-direction: row-reverse;
}
.pp-dropmenu.right > .subitems {
  margin-right: -1px;
}
.pp-dropmenu > .items,
.pp-dropmenu .subitems {
  background-color: #fff;
  width: 247px;
  max-height: calc(100vh - 52px);
  color: #2b304f;
  padding: 8px 0;
  border: 1px solid #cccccf;
  box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  z-index: 5000;
}
.pp-dropmenu > .items > .item,
.pp-dropmenu .subitems > .item {
  cursor: pointer;
  height: 38px;
  width: 100%;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  font-family: Inter;
}
.pp-dropmenu > .items > .item i,
.pp-dropmenu .subitems > .item i {
  font-size: 18px;
  font-weight: bolder;
}
.pp-dropmenu > .items > .item.selected,
.pp-dropmenu .subitems > .item.selected {
  background-color: #eee;
}
.pp-dropmenu > .items > .item:hover,
.pp-dropmenu .subitems > .item:hover {
  background-color: #f5f5f5;
}
.pp-dropmenu > .items > .item > .label,
.pp-dropmenu .subitems > .item > .label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pp-dropmenu > .items hr,
.pp-dropmenu .subitems hr {
  margin: 8px 24px;
}
.pp-dropmenu > .items {
  height: fit-content;
}
.pp-dropmenu > .items > .item {
  justify-content: space-between;
}
.pp-dropmenu > .subitems {
  height: fit-content;
  overflow-y: auto;
}
.pp-dropmenu > .subitems::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0.25rem;
  background-color: #eee;
  z-index: 99;
}
.pp-dropmenu > .subitems::-webkit-scrollbar-thumb {
  background: #cccccf;
  border-radius: 0.25rem;
}
.pp-dropmenu > .subitems::-webkit-scrollbar-thumb:hover {
  background: #ddd;
}
.pp-dropmenu > .subitems::-webkit-scrollbar-track {
  border-radius: 0.25rem;
}
.pp-dropmenu > .subitems > .item {
  font-size: 14px;
  font-weight: 400;
  justify-content: flex-start;
  gap: 10px;
}
.pp-dropmenu > .subitems > .item i {
  font-size: 22px;
  font-weight: 300;
}

/* src/components/PPTextField/style.css */

/* base text */
.pp-textfield__label {
    font-family: Inter;
    font-size: 12px;
    height: 18px;
}

.pp-text-field__help {
    font-size: 13px;
    color: grey;
    font-family: Inter;
}

.pp-textfield__suggestions {
    background-color: white;
    padding: 10px;
    z-index: 300;
    position: absolute;
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-width: 100%;
    min-width: 200px;
    max-height: 200px;
    overflow-y: scroll;
    box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.25);
}

    .pp-textfield__suggestions .loading {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 5px;
        font-size: 12px;
    }

    .pp-textfield__suggestions .suggestion {
        padding: 5px;
        cursor: pointer;
        font-size: 14px;
        color: #2B304F;
        font-weight: 400;
        border-radius: 4px;
    }

        .pp-textfield__suggestions .suggestion.disabled {
            cursor: not-allowed;
            color: #8B90A3;
        }

        .pp-textfield__suggestions .suggestion:hover {
            background-color: #E2E6F3;
            color: #20203F;
        }

/* tooltip wrapper */
.pp-text-field__tooltip {
    display: flex;
    align-items: flex-end;
    height: 100%;
}

/* container around field + tooltip */
.pp-textfield__item {
    position: relative;
}

    .pp-textfield__item .pp-tooltip {
        width: 100%;
    }

/* all variants of the input � default, disabled, error, required, readonly */
.pp-text-field__root,
.pp-text-field__multiline {
    margin-top: 3px;
    background-color: white;
    width: 100%;
    font-family: Inter;
    font-size: 14px;
    height: 40px; /* multiline overrides min-height below */
    border-radius: 4px; /* outline border handled by MUI */
}

    .pp-text-field__root:hover .MuiOutlinedInput-notchedOutline,
    .pp-text-field__multiline:hover .MuiOutlinedInput-notchedOutline {
        border: 1px solid #898DA6 !important;
    }

    .pp-text-field__root.Mui-focused .MuiOutlinedInput-notchedOutline,
    .pp-text-field__multiline.Mui-focused .MuiOutlinedInput-notchedOutline {
        border: 1px solid #141B4D !important;
    }

/* disabled */
.pp-text-field___disabled,
.pp-text-field__multiline_disabled {
    margin-top: 3px;
    background-color: #EBEBEB;
    font-size: 14px;
    height: 40px;
    font-family: Inter;
    width: 100% !important; /* for multiline */
}

    .pp-text-field___disabled:hover .MuiOutlinedInput-notchedOutline,
    .pp-text-field__multiline_disabled:hover .MuiOutlinedInput-notchedOutline {
        border: none !important;
    }

/* error */
.pp-text-field___required_error,
.pp-text-field__multiline_required_error {
    margin-top: 3px;
    background-color: white;
    font-size: 14px;
    height: 40px;
    font-family: Inter;
    border: 2px solid #D35555 !important;
    border-radius: 4px;
    padding: 7px 15px; /* multiline */
}

    .pp-text-field___required_error.Mui-focused .MuiOutlinedInput-notchedOutline {
        border: 2px solid #D35555 !important;
    }

/* required (no error) */
.pp-text-field___required,
.pp-text-field__multiline_required {
    margin-top: 3px;
    background-color: white;
    font-size: 14px;
    height: 40px;
    font-family: Inter;
    border-left: 3px solid #FFB800;
    border-radius: 4px;
    padding: 10px 14px; /* multiline */
}

    .pp-text-field___required:hover .MuiOutlinedInput-notchedOutline {
        border-left-color: #FFB800 !important;
        border-color: #898DA6 !important;
    }

    .pp-text-field___required.Mui-focused .MuiOutlinedInput-notchedOutline {
        border-left-color: #FFB800 !important;
        border-color: #141B4D !important;
    }

/* readOnly */
.pp-text-field___readOnly,
.pp-text-field__multiline_readOnly {
    cursor: default;
    margin-top: 3px;
    font-size: 14px;
    font-family: Inter;
    min-height: 40px; /* multiline */
    background-color: #EBEBEB;
}

    .pp-text-field___readOnly:hover .MuiOutlinedInput-notchedOutline,
    .pp-text-field__multiline_readOnly:hover .MuiOutlinedInput-notchedOutline {
        border: 1px solid #898DA6 !important;
    }

    .pp-text-field___readOnly.Mui-focused .MuiOutlinedInput-notchedOutline,
    .pp-text-field__multiline_readOnly.Mui-focused .MuiOutlinedInput-notchedOutline {
        border: 1px solid #141B4D !important;
    }

.pp-form > .fields {
  width: 100%;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 20px;
}
.pp-form > .fields > * {
  padding: 0 5px 0 5px;
}
.pp-form > .fields > span {
  height: 0;
  padding: 0;
  background-color: transparent;
}
.pp-form > .functions {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  margin-top: 20px;
  gap: 15px;
}
.pp-form > .loading {
  display: flex;
  height: 50px;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.pp-form > .loading > i {
  position: absolute;
  font-size: 40px;
  color: #273b85;
}
.pp-form.debug > .fields {
  background-color: lightcoral;
}
.pp-form.debug > .fields > * > .title {
  background-color: yellow;
}
.pp-form.debug > .fields > * > .field {
  background-color: chocolate;
}
.pp-form.debug > .functions {
  background-color: blue;
}

.pp-dropdown {
  position: relative;
  width: fit-content;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.pp-dropdown > .title {
  font-family: "Inter";
  font-weight: 400;
  font-size: 12px;
  color: #2b304f;
  margin-bottom: 6px;
}
.pp-dropdown > .field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
  height: 40px;
  padding: 8px 10px;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  border: 1px solid #fff;
  transition: border 0.5s;
}
.pp-dropdown > .field > .value {
  font-family: "Inter";
  font-weight: 400;
  font-size: 14px;
  color: #2b304f;
}
.pp-dropdown > .field > .value > .placeholder {
  color: #aaa;
}
.pp-dropdown > .field:hover {
  border: 1px solid #898da6;
}
.pp-dropdown > .field.active {
  border: 1px solid #141b4d;
}
.pp-dropdown > .field > .icons {
  display: flex;
  font-size: 20px;
  gap: 5px;
  color: #141b4d;
}
.pp-dropdown > .field > .icons > .ppi {
  -webkit-user-select: none;
          user-select: none;
  cursor: pointer;
}
.pp-dropdown > .field > .icons > .ppi:hover {
  font-weight: 700;
}
.pp-dropdown > .field.required {
  border-left: 3px solid #ffb800;
}
.pp-dropdown > .field.error {
  border-width: 2px;
  border-color: #f44336;
  border-style: solid;
}
.pp-dropdown > .help {
  display: none;
  flex-direction: column;
  height: fit-content;
  position: absolute;
  overflow: visible;
  z-index: 5000;
  transform: translateY(58px);
  width: 100%;
}
.pp-dropdown > .help.wt {
  transform: translateY(37px);
}
.pp-dropdown > .help > i {
  z-index: 7501;
  font-size: 1.2rem;
  color: #e2e6f3;
  margin: 0 10px;
}
.pp-dropdown > .help > .main {
  width: inherit;
  z-index: 7500;
  transform: translate(0, -6px);
  display: flex;
  justify-content: flex-start;
  overflow: visible;
}
.pp-dropdown > .help > .main > .content {
  position: absolute;
  width: max-content;
  max-width: 240px;
  height: auto;
  background-color: #e2e6f3;
  padding: 8px 11px;
  box-shadow: 0px 0px 3px rgba(32, 47, 47, 0.36);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  word-break: break-word;
  color: #2b304f !important;
}
.pp-dropdown > .help > .main > .content .line:not(:last-child) {
  margin-bottom: 8px;
}
.pp-dropdown > .help.right {
  align-items: flex-end;
}
.pp-dropdown > .help.right > .main {
  justify-content: flex-end;
}
.pp-dropdown.debug {
  background-color: green;
}
.pp-dropdown.debug .title {
  background-color: red;
}
.pp-dropdown.debug .field {
  background-color: blue;
}
.pp-dropdown:hover .help {
  display: flex;
}
.pp-dropdown.disabled > .field, .pp-dropdown.readonly > .field {
  cursor: default;
  background-color: #ebebeb;
  color: #777;
}
.pp-dropdown.disabled > .field > .items > .shadow, .pp-dropdown.readonly > .field > .items > .shadow {
  background-color: #ebebeb;
  box-shadow: -30px 0 30px 50px #ebebeb;
}
.pp-dropdown.disabled > .field > .icons, .pp-dropdown.readonly > .field > .icons {
  color: #777;
}
.pp-dropdown.disabled > .field > .icons > .ppi, .pp-dropdown.readonly > .field > .icons > .ppi {
  cursor: inherit;
}
.pp-dropdown.disabled > .field > .icons > .ppi:hover, .pp-dropdown.readonly > .field > .icons > .ppi:hover {
  font-weight: normal;
}
.pp-dropdown.disabled > .field {
  cursor: not-allowed;
}
.pp-dropdown.disabled > .field:hover {
  border: 1px solid #fff;
}
.pp-dropdown.readonly > .field {
  color: #141b4d;
}
.pp-dropdown > .list {
  margin-top: 50px;
  position: absolute;
  z-index: 10000;
  min-width: 300px;
  max-height: 216px;
  background-color: #fff;
  list-style: none;
  padding: 0 5px;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
  overflow: hidden; 
  transition: height 0.1s ease-in-out;
}
.pp-dropdown > .list.wt {
  transform: translateY(43px) translateX(3px);
}
.pp-dropdown > .list.right {
  align-self: flex-end;
  box-shadow: 0 5px -5px rgba(0, 0, 0, 0.25);
  margin: -15px 5px 0 0;
}
.pp-dropdown > .list.top {
  transform: translateY(calc(-100% + 24px)) translateX(3px);
  border-radius: 4px 4px 0 0;
  box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.25);
}
.pp-dropdown > .list.wt.top {
  transform: translateY(calc(-100% + 3px)) translateX(3px);
}
.pp-dropdown > .list .search {
  display: flex;
  width: 100%;
  height: 28px;
  margin: 4px 0;
  padding: 4px;
  background-color: #f4f4f4;
  border-radius: 4px;
}
.pp-dropdown > .list .search > input {
  width: 100%;
  border: none;
  background-color: transparent;
  padding: 0 4px;
}
.pp-dropdown > .list .search > input::placeholder {
  color: #bbb;
  font-family: Inter;
}
.pp-dropdown > .list .search > .ppi-search {
  color: #ddd;
}
.pp-dropdown > .list .search > .ppi-x {
  cursor: pointer;
}
.pp-dropdown > .list > .items {
  overflow-y: auto;
  overflow-x: hidden;
  margin: 3px;
}
.pp-dropdown > .list > .items::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: #eee;
  z-index: 99;
}
.pp-dropdown > .list > .items::-webkit-scrollbar-thumb {
  background: #cccccf;
  border-radius: 4px;
}
.pp-dropdown > .list > .items::-webkit-scrollbar-thumb:hover {
  background: #ddd;
}
.pp-dropdown > .list > .items::-webkit-scrollbar-track {
  border-radius: 4px;
}
.pp-dropdown > .list > .items > .item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  color: #2b304f;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
}
.pp-dropdown > .list > .items > .item.disabled {
  color: #bbb;
  cursor: not-allowed;
}
.pp-dropdown > .list > .items > .item.selected {
  background-color: #ccc;
}
.pp-dropdown > .list > .items > .item:hover {
  background-color: #ebebeb;
}
.pp-dropdown.debug .title {
  background-color: red;
}
.pp-dropdown.debug .field {
  background-color: blue;
}
.pp-dropdown.debug .list {
  background-color: green;
}
.pp-multiselect {
  position: relative;
  width: fit-content;
  height: fit-content;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.pp-multiselect>.title {
  font-family: "Inter";
  font-weight: 400;
  font-size: 12px;
  color: #2b304f;
  margin-bottom: 6px;
}

.pp-multiselect>.field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
  height: 40px;
  border: 0;
  padding: 8px 10px;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  border: 1px solid #fff;
  transition: border 0.5s;
}

.pp-multiselect>.field:hover {
  border: 1px solid #898da6;
}

.pp-multiselect>.field.active {
  border: 1px solid #141b4d;
}

.pp-multiselect>.field>.items {
  display: flex;
  width: 100%;
  gap: 10px;
  overflow: hidden;
  position: relative;
}

.pp-multiselect>.field>.items>.placeholder {
  color: #bbb;
  font-size: 14px;
}

.pp-multiselect>.field>.items>.item {
  display: flex;
  align-items: center;
  width: auto;
  padding: 2px 8px;
  border-radius: 8px;
  background-color: #ebebeb;
  font-size: 14px;
  white-space: nowrap;
}

.pp-multiselect>.field>.items>.item>.ppi {
  cursor: pointer;
  margin-left: 5px;
  font-size: 16px;
  font-weight: 700;
}

.pp-multiselect>.field>.items .shadow {
  position: absolute;
  height: 40px;
  width: 1px;
  right: 0;
  background-color: #fff;
  box-shadow: -25px 0 30px 50px #fff;
}

.pp-multiselect>.field>.items>input {
  border: none;
  font-size: 14px;
  font-family: Inter;
  flex-grow: 1;
  cursor: text;
}

.pp-multiselect>.field>.icons {
  display: flex;
  font-size: 20px;
  gap: 5px;
  color: #141b4d;
}

.pp-multiselect>.field>.icons>.ppi {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}

.pp-multiselect>.field>.icons>.ppi:hover {
  font-weight: 700;
}

.pp-multiselect>.field.required {
  border-left: 3px solid #ffb800;
}

.pp-multiselect>.field.error {
  border-width: 2px;
  border-color: #f44336;
  border-style: solid;
}

.pp-multiselect>.help {
  display: none;
  flex-direction: column;
  height: fit-content;
  position: absolute;
  overflow: visible;
  z-index: 5000;
  transform: translateY(58px);
  width: 100%;
}

.pp-multiselect>.help.wt {
  transform: translateY(37px);
}

.pp-multiselect>.help>i {
  z-index: 7501;
  font-size: 1.2rem;
  color: #e2e6f3;
  margin: 0 10px;
}

.pp-multiselect>.help>.main {
  width: inherit;
  z-index: 7500;
  transform: translate(0, -6px);
  display: flex;
  justify-content: flex-start;
  overflow: visible;
}

.pp-multiselect>.help>.main>.content {
  position: absolute;
  width: max-content;
  max-width: 240px;
  height: auto;
  background-color: #e2e6f3;
  padding: 8px 11px;
  box-shadow: 0px 0px 3px rgba(32, 47, 47, 0.36);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  word-break: break-word;
  color: #2b304f !important;
}

.pp-multiselect>.help>.main>.content .line:not(:last-child) {
  margin-bottom: 8px;
}

.pp-multiselect>.help.right {
  align-items: flex-end;
}

.pp-multiselect>.help.right>.main {
  justify-content: flex-end;
}

.pp-multiselect.debug {
  background-color: green;
}

.pp-multiselect.debug .title {
  background-color: red;
}

.pp-multiselect.debug .field {
  background-color: blue;
}

.pp-multiselect:hover .help {
  display: flex;
}

.pp-multiselect.disabled>.field,
.pp-multiselect.readonly>.field {
  cursor: default;
  background-color: #ebebeb;
  color: #777;
}

.pp-multiselect.disabled>.field>.items>.shadow,
.pp-multiselect.readonly>.field>.items>.shadow {
  background-color: #ebebeb;
  box-shadow: -30px 0 30px 50px #ebebeb;
}

.pp-multiselect.disabled>.field>.icons,
.pp-multiselect.readonly>.field>.icons {
  color: #777;
}

.pp-multiselect.disabled>.field>.icons>.ppi,
.pp-multiselect.readonly>.field>.icons>.ppi {
  cursor: inherit;
}

.pp-multiselect.disabled>.field>.icons>.ppi:hover,
.pp-multiselect.readonly>.field>.icons>.ppi:hover {
  font-weight: normal;
}

.pp-multiselect.disabled>.field {
  cursor: not-allowed;
}

.pp-multiselect.disabled>.field:hover {
  border: 1px solid #fff;
}

.pp-multiselect.readonly>.field {
  color: #141b4d;
}

.pp-multiselect>.list {
  position: fixed;
  z-index: 10000;
  min-width: 300px;
  max-height: 216px;
  background-color: #fff;
  list-style: none;
  padding: 0 5px;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: translateY(64px) translateX(3px);
  transition: height 0.1s ease-in-out;
}

.pp-multiselect>.list.wt {
  transform: translateY(43px) translateX(3px);
}

.pp-multiselect>.list.right {
  align-self: flex-end;
  box-shadow: 0 5px -5px rgba(0, 0, 0, 0.25);
  margin: 0 5px 0 0;
}

.pp-multiselect>.list.top {
  transform: translateY(calc(-100% + 24px)) translateX(3px);
  border-radius: 4px 4px 0 0;
  box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.25);
}

.pp-multiselect>.list.wt.top {
  transform: translateY(calc(-100% + 3px)) translateX(3px);
}

.pp-multiselect>.list>.options {
  margin: 4px 0;
  padding: 4px;
}

.pp-multiselect>.list>.options>.option {
  background-color: #bbb;
  cursor: pointer;
  font-size: 0.7rem;
  color: #fff;
  padding: 2px 4px;
  border-radius: 4px;
  margin-right: 4px;
}

.pp-multiselect>.list>.options>.option:hover {
  background-color: #ddd;
  color: #666;
}

.pp-multiselect>.list>.search {
  display: flex;
  width: 100%;
  height: 28px;
  margin: 4px 0;
  padding: 4px;
  background-color: #f4f4f4;
  border-radius: 4px;
}

.pp-multiselect>.list>.search>input {
  width: 100%;
  border: none;
  background-color: transparent;
  padding: 0 4px;
}

.pp-multiselect>.list>.search>input::placeholder {
  color: #bbb;
  font-family: Inter;
}

.pp-multiselect>.list>.search>.ppi-search {
  color: #ddd;
}

.pp-multiselect>.list>.search>.ppi-x {
  cursor: pointer;
}

.pp-multiselect>.list>.items {
  overflow-y: scroll;
  overflow-x: hidden;
  margin: 3px;
}

.pp-multiselect>.list>.items::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: #eee;
  z-index: 99;
}

.pp-multiselect>.list>.items::-webkit-scrollbar-thumb {
  background: #cccccf;
  border-radius: 4px;
}

.pp-multiselect>.list>.items::-webkit-scrollbar-thumb:hover {
  background: #ddd;
}

.pp-multiselect>.list>.items::-webkit-scrollbar-track {
  border-radius: 4px;
}

.pp-multiselect>.list>.items hr {
  margin: 0;
  background-color: #ddd;
}

.pp-multiselect>.list>.items>.item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  color: #2b304f;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
}

.pp-multiselect>.list>.items>.item .ppi {
  color: #cccccf;
}

.pp-multiselect>.list>.items>.item.disabled {
  color: #bbb;
  cursor: not-allowed;
}

.pp-multiselect>.list>.items>.item.selected .ppi {
  color: #ffb800;
}

.pp-multiselect>.list>.items>.item:hover {
  background-color: #ebebeb;
}

.pp-multiselect.debug .title {
  background-color: red;
}

.pp-multiselect.debug .field {
  background-color: blue;
}

.pp-multiselect.debug .list {
  background-color: green;
}
@font-face {
  font-family: "Processor-Platform";
  src: url(/static/media/Processor-Platform.76d153fe892ad012e91f.eot);
  src: url(/static/media/Processor-Platform.76d153fe892ad012e91f.eot#iefix)
      format("embedded-opentype"),
    url(/static/media/Processor-Platform.364d3348aae2a942ea96.ttf) format("truetype"),
    url(/static/media/Processor-Platform.c663e0700aeccbfcb84b.woff) format("woff"),
    url(/static/media/Processor-Platform.df07dd02ce53263f5d9b.svg#Processor-Platform) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

#iconSizeHelpIcon {
  font-size: 10px;
  color: #141b4d;
}

#iconSizeMessageBox {
  font-size: 40px;
  color: #141b4d;
}

#arrowsNumeric {
  font-size: 15px;
  color: #141b4d;
}

.pp-iconNotify {
  font-size: 25px;
  color: #141b4d;
}

#iconSearchSize {
  font-size: 20px;
  color: #141b4d;
}

#closeIconMessageBox {
  font-size: 14px;
  color: #141b4d;
  margin-top: 4px;
  margin-bottom: 4px;
  margin-left: 24px;
}

#iconSizeSelects {
  font-size: 15px;
  color: #141b4d;
  padding: 4px 0 0 0;
}

#arrowsTextfieldNumeric {
  font-size: 15px;
  color: #141b4d;
}

#closeIcon {
  font-size: 20px;
  color: #141b4d;
  padding: 0 0 0 0;
}

#uploadIcon {
  font-size: 21.01px;
  color: #141b4d;
}

#trashUploaderIcon {
  font-size: 21px;
  color: #141b4d;
}

i.ppi {
  font-family: "Processor-Platform" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ppi.ppi-restore-alt:before {
  content: "\ea16";
}
.ppi.ppi-chart-bar-alt:before {
  content: "\e9c5";
}
.ppi.ppi-file-picture:before {
  content: "\ea14";
}
.ppi.ppi-template:before {
  content: "\ea15";
}
.ppi.ppi-cloud-disk:before {
  content: "\ea0f";
}
.ppi.ppi-ambulance:before {
  content: "\ea10";
}
.ppi.ppi-case-disk:before {
  content: "\ea11";
}
.ppi.ppi-clipboard-chart:before {
  content: "\ea12";
}
.ppi.ppi-headset:before {
  content: "\e9fb";
}
.ppi.ppi-checkbox-alt:before {
  content: "\e9fc";
}
.ppi.ppi-build:before {
  content: "\e9fd";
}
.ppi.ppi-callcenter:before {
  content: "\e9fe";
}
.ppi.ppi-case:before {
  content: "\e9ff";
}
.ppi.ppi-certifi:before {
  content: "\ea00";
}
.ppi.ppi-cloud:before {
  content: "\ea01";
}
.ppi.ppi-cloud-edit:before {
  content: "\ea02";
}
.ppi.ppi-cloud-server:before {
  content: "\ea03";
}
.ppi.ppi-eye-alt:before {
  content: "\ea04";
}
.ppi.ppi-server-stack:before {
  content: "\ea05";
}
.ppi.ppi-gear:before {
  content: "\ea06";
}
.ppi.ppi-globe-s:before {
  content: "\ea07";
}
.ppi.ppi-govern:before {
  content: "\ea08";
}
.ppi.ppi-people:before {
  content: "\ea09";
}
.ppi.ppi-reload:before {
  content: "\ea0a";
}
.ppi.ppi-safe:before {
  content: "\ea0b";
}
.ppi.ppi-user-secret:before {
  content: "\ea0c";
}
.ppi.ppi-user-circle-alt:before {
  content: "\ea0d";
}
.ppi.ppi-bomb:before {
  content: "\ea0e";
}
.ppi.ppi-play:before {
  content: "\e9f5";
}
.ppi.ppi-drag-vertical:before {
  content: "\e9f7";
}
.ppi.ppi-percent:before {
  content: "\e9fa";
}
.ppi.ppi-flow-merge:before {
  content: "\e99d";
}
.ppi.ppi-restore:before {
  content: "\e9f6";
}
.ppi.ppi-in-progress:before {
  content: "\e9f1";
}
.ppi.ppi-pause:before {
  content: "\e9f2";
}
.ppi.ppi-floppy:before {
  content: "\e9f0";
}
.ppi.ppi-academic-cap:before {
  content: "\e900";
}
.ppi.ppi-adjustments:before {
  content: "\e901";
}
.ppi.ppi-annotation:before {
  content: "\e902";
}
.ppi.ppi-archive:before {
  content: "\e903";
}
.ppi.ppi-arrow-circle-down:before {
  content: "\e904";
}
.ppi.ppi-arrow-circle-left:before {
  content: "\e905";
}
.ppi.ppi-arrow-circle-right:before {
  content: "\e906";
}
.ppi.ppi-arrow-circle-up:before {
  content: "\e907";
}
.ppi.ppi-arrow-down:before {
  content: "\e908";
}
.ppi.ppi-arrow-left:before {
  content: "\e909";
}
.ppi.ppi-arrow-right:before {
  content: "\e90e";
}
.ppi.ppi-arrow-up:before {
  content: "\e910";
}
.ppi.ppi-arrow-narrow-down:before {
  content: "\e90a";
}
.ppi.ppi-arrow-narrow-left:before {
  content: "\e90b";
}
.ppi.ppi-arrow-narrow-right:before {
  content: "\e90c";
}
.ppi.ppi-arrow-narrow-up:before {
  content: "\e90d";
}
.ppi.ppi-arrows-expand:before {
  content: "\e90f";
}
.ppi.ppi-at-symbol:before {
  content: "\e911";
}
.ppi.ppi-backspace:before {
  content: "\e912";
}
.ppi.ppi-badge-check:before {
  content: "\e913";
}
.ppi.ppi-ban:before {
  content: "\e914";
}
.ppi.ppi-beaker:before {
  content: "\e915";
}
.ppi.ppi-bell:before {
  content: "\e916";
}
.ppi.ppi-bookmark:before {
  content: "\e917";
}
.ppi.ppi-bookmark-alt:before {
  content: "\e918";
}
.ppi.ppi-book-open:before {
  content: "\e919";
}
.ppi.ppi-briefcase:before {
  content: "\e91a";
}
.ppi.ppi-cake:before {
  content: "\e91b";
}
.ppi.ppi-calculator:before {
  content: "\e91c";
}
.ppi.ppi-calendar:before {
  content: "\e91d";
}
.ppi.ppi-camera:before {
  content: "\e91e";
}
.ppi.ppi-cash:before {
  content: "\e91f";
}
.ppi.ppi-chart-bar:before {
  content: "\e920";
}
.ppi.ppi-chart-pie:before {
  content: "\e921";
}
.ppi.ppi-chart-square-bar:before {
  content: "\e922";
}
.ppi.ppi-chat:before {
  content: "\e923";
}
.ppi.ppi-chat-alt:before {
  content: "\e924";
}
.ppi.ppi-chat-alt-2:before {
  content: "\e925";
}
.ppi.ppi-check:before {
  content: "\e926";
}
.ppi.ppi-check-double:before {
  content: "\ea13";
}
.ppi.ppi-check-circle:before {
  content: "\e927";
}
.ppi.ppi-chevron-double-down:before {
  content: "\e928";
}
.ppi.ppi-chevron-double-left:before {
  content: "\e929";
}
.ppi.ppi-chevron-double-right:before {
  content: "\e92a";
}
.ppi.ppi-chevron-double-up:before {
  content: "\e92b";
}
.ppi.ppi-chevron-down:before {
  content: "\e92c";
}
.ppi.ppi-chevron-left:before {
  content: "\e92d";
}
.ppi.ppi-chevron-right:before {
  content: "\e92e";
}
.ppi.ppi-chevron-up:before {
  content: "\e92f";
}
.ppi.ppi-chip:before {
  content: "\e930";
}
.ppi.ppi-clipboard:before {
  content: "\e931";
}
.ppi.ppi-clipboard-check:before {
  content: "\e932";
}
.ppi.ppi-clipboard-copy:before {
  content: "\e933";
}
.ppi.ppi-clipboard-list:before {
  content: "\e934";
}
.ppi.ppi-clock:before {
  content: "\e935";
}
.ppi.ppi-cloud-alt:before {
  content: "\e936";
}
.ppi.ppi-cloud-download:before {
  content: "\e937";
}
.ppi.ppi-cloud-upload:before {
  content: "\e938";
}
.ppi.ppi-code:before {
  content: "\e939";
}
.ppi.ppi-cog:before {
  content: "\e93a";
}
.ppi.ppi-collection:before {
  content: "\e93b";
}
.ppi.ppi-color-swatch:before {
  content: "\e93c";
}
.ppi.ppi-credit-card:before {
  content: "\e93d";
}
.ppi.ppi-cube:before {
  content: "\e93e";
}
.ppi.ppi-cube-transparent:before {
  content: "\e93f";
}
.ppi.ppi-currency-bangladeshi:before {
  content: "\e940";
}
.ppi.ppi-currency-dollar:before {
  content: "\e941";
}
.ppi.ppi-currency-euro:before {
  content: "\e942";
}
.ppi.ppi-currency-pound:before {
  content: "\e943";
}
.ppi.ppi-currency-rupee:before {
  content: "\e944";
}
.ppi.ppi-currency-yen:before {
  content: "\e945";
}
.ppi.ppi-cursor-click:before {
  content: "\e946";
}
.ppi.ppi-database:before {
  content: "\e947";
}
.ppi.ppi-desktop-computer:before {
  content: "\e948";
}
.ppi.ppi-device-mobile:before {
  content: "\e949";
}
.ppi.ppi-device-tablet:before {
  content: "\e94a";
}
.ppi.ppi-document:before {
  content: "\e94b";
}
.ppi.ppi-document-add:before {
  content: "\e94c";
}
.ppi.ppi-document-download:before {
  content: "\e94d";
}
.ppi.ppi-document-duplicate:before {
  content: "\e94e";
}
.ppi.ppi-document-remove:before {
  content: "\e94f";
}
.ppi.ppi-document-report:before {
  content: "\e950";
}
.ppi.ppi-document-search:before {
  content: "\e951";
}
.ppi.ppi-document-text:before {
  content: "\e952";
}
.ppi.ppi-dots-circle-horizontal:before {
  content: "\e953";
}
.ppi.ppi-dots-horizontal:before {
  content: "\e954";
}
.ppi.ppi-dots-vertical:before {
  content: "\e955";
}
.ppi.ppi-download:before {
  content: "\e956";
}
.ppi.ppi-duplicate:before {
  content: "\e957";
}
.ppi.ppi-emoji-happy:before {
  content: "\e958";
}
.ppi.ppi-emoji-sad:before {
  content: "\e959";
}
.ppi.ppi-exclamation:before {
  content: "\e95a";
}
.ppi.ppi-exclamation-circle:before {
  content: "\e95b";
}
.ppi.ppi-expand:before {
  content: "\e95c";
}
.ppi.ppi-external-link:before {
  content: "\e95d";
}
.ppi.ppi-eye:before {
  content: "\e95e";
}
.ppi.ppi-eye-off:before {
  content: "\e95f";
}
.ppi.ppi-fast-forward:before {
  content: "\e960";
}
.ppi.ppi-film:before {
  content: "\e961";
}
.ppi.ppi-filter:before {
  content: "\e962";
}
.ppi.ppi-finger-print:before {
  content: "\e963";
}
.ppi.ppi-fire:before {
  content: "\e964";
}
.ppi.ppi-flag:before {
  content: "\e965";
}
.ppi.ppi-folder:before {
  content: "\e966";
}
.ppi.ppi-folder-add:before {
  content: "\e967";
}
.ppi.ppi-folder-download:before {
  content: "\e968";
}
.ppi.ppi-folder-open:before {
  content: "\e969";
}
.ppi.ppi-folder-remove:before {
  content: "\e96a";
}
.ppi.ppi-gift:before {
  content: "\e96b";
}
.ppi.ppi-globe:before {
  content: "\e96c";
}
.ppi.ppi-globe-alt:before {
  content: "\e96d";
}
.ppi.ppi-hand:before {
  content: "\e96e";
}
.ppi.ppi-hashtag:before {
  content: "\e96f";
}
.ppi.ppi-heart:before {
  content: "\e970";
}
.ppi.ppi-home:before {
  content: "\e971";
}
.ppi.ppi-identification:before {
  content: "\e972";
}
.ppi.ppi-inbox:before {
  content: "\e973";
}
.ppi.ppi-inbox-in:before {
  content: "\e974";
}
.ppi.ppi-information-circle:before {
  content: "\e975";
}
.ppi.ppi-key:before {
  content: "\e976";
}
.ppi.ppi-library:before {
  content: "\e977";
}
.ppi.ppi-light-bulb:before {
  content: "\e978";
}
.ppi.ppi-lightning-bolt:before {
  content: "\e979";
}
.ppi.ppi-link:before {
  content: "\e97a";
}
.ppi.ppi-location-marker:before {
  content: "\e97b";
}
.ppi.ppi-lock-closed:before {
  content: "\e97c";
}
.ppi.ppi-lock-open:before {
  content: "\e97d";
}
.ppi.ppi-login:before {
  content: "\e97e";
}
.ppi.ppi-logout:before {
  content: "\e97f";
}
.ppi.ppi-mail:before {
  content: "\e980";
}
.ppi.ppi-mail-open:before {
  content: "\e981";
}
.ppi.ppi-map:before {
  content: "\e982";
}
.ppi.ppi-menu:before {
  content: "\e983";
}
.ppi.ppi-menu-alt-1:before {
  content: "\e984";
}
.ppi.ppi-menu-alt-2:before {
  content: "\e985";
}
.ppi.ppi-menu-alt-3:before {
  content: "\e986";
}
.ppi.ppi-menu-alt-4:before {
  content: "\e987";
}
.ppi.ppi-microphone:before {
  content: "\e988";
}
.ppi.ppi-minus:before {
  content: "\e989";
}
.ppi.ppi-minus-circle:before {
  content: "\e98a";
}
.ppi.ppi-minus-sm:before {
  content: "\e98b";
}
.ppi.ppi-moon:before {
  content: "\e98c";
}
.ppi.ppi-music-note:before {
  content: "\e98d";
}
.ppi.ppi-newspaper:before {
  content: "\e98e";
}
.ppi.ppi-office-building:before {
  content: "\e98f";
}
.ppi.ppi-paper-airplane:before {
  content: "\e990";
}
.ppi.ppi-paper-clip:before {
  content: "\e991";
}
.ppi.ppi-pause-circle:before {
  content: "\e992";
}
.ppi.ppi-pencil:before {
  content: "\e993";
}
.ppi.ppi-pencil-alt:before {
  content: "\e994";
}
.ppi.ppi-phone:before {
  content: "\e995";
}
.ppi.ppi-phone-incoming:before {
  content: "\e996";
}
.ppi.ppi-phone-missed-call:before {
  content: "\e997";
}
.ppi.ppi-phone-outgoing:before {
  content: "\e998";
}
.ppi.ppi-photograph:before {
  content: "\e999";
}
.ppi.ppi-play-circle:before {
  content: "\e99a";
}
.ppi.ppi-plus:before {
  content: "\e99b";
}
.ppi.ppi-plus-circle:before {
  content: "\e99c";
}
.ppi.ppi-presentation-chart-bar:before {
  content: "\e99e";
}
.ppi.ppi-presentation-chart-line:before {
  content: "\e99f";
}
.ppi.ppi-printer:before {
  content: "\e9a0";
}
.ppi.ppi-puzzle:before {
  content: "\e9a1";
}
.ppi.ppi-qrcode:before {
  content: "\e9a2";
}
.ppi.ppi-question-mark-circle:before {
  content: "\e9a3";
}
.ppi.ppi-receipt-refund:before {
  content: "\e9a4";
}
.ppi.ppi-receipt-tax:before {
  content: "\e9a5";
}
.ppi.ppi-refresh:before {
  content: "\e9a6";
}
.ppi.ppi-reply:before {
  content: "\e9a7";
}
.ppi.ppi-rewind:before {
  content: "\e9a8";
}
.ppi.ppi-rss:before {
  content: "\e9a9";
}
.ppi.ppi-save:before {
  content: "\e9aa";
}
.ppi.ppi-save-as:before {
  content: "\e9ab";
}
.ppi.ppi-scale:before {
  content: "\e9ac";
}
.ppi.ppi-scissors:before {
  content: "\e9ad";
}
.ppi.ppi-search:before {
  content: "\e9ae";
}
.ppi.ppi-search-circle:before {
  content: "\e9af";
}
.ppi.ppi-selector:before {
  content: "\e9b0";
}
.ppi.ppi-server:before {
  content: "\e9b1";
}
.ppi.ppi-share:before {
  content: "\e9b2";
}
.ppi.ppi-shield-check:before {
  content: "\e9b3";
}
.ppi.ppi-shield-exclamation:before {
  content: "\e9b4";
}
.ppi.ppi-shopping-bag:before {
  content: "\e9b5";
}
.ppi.ppi-shopping-cart:before {
  content: "\e9b6";
}
.ppi.ppi-sort-ascending:before {
  content: "\e9b7";
}
.ppi.ppi-sort-descending:before {
  content: "\e9b8";
}
.ppi.ppi-sparkles:before {
  content: "\e9b9";
}
.ppi.ppi-speakerphone:before {
  content: "\e9ba";
}
.ppi.ppi-star:before {
  content: "\e9bb";
}
.ppi.ppi-star-solid:before {
  content: "\e9f8";
}
.ppi.ppi-status-offline:before {
  content: "\e9bc";
}
.ppi.ppi-status-online:before {
  content: "\e9bd";
}
.ppi.ppi-stop:before {
  content: "\e9be";
}
.ppi.ppi-sun:before {
  content: "\e9bf";
}
.ppi.ppi-support:before {
  content: "\e9c0";
}
.ppi.ppi-switch-horizontal:before {
  content: "\e9c1";
}
.ppi.ppi-switch-vertical:before {
  content: "\e9c2";
}
.ppi.ppi-table:before {
  content: "\e9c3";
}
.ppi.ppi-tag:before {
  content: "\e9c4";
}
.ppi.ppi-terminal:before {
  content: "\e9c6";
}
.ppi.ppi-thumb-down:before {
  content: "\e9c7";
}
.ppi.ppi-thumb-up:before {
  content: "\e9c8";
}
.ppi.ppi-ticket:before {
  content: "\e9c9";
}
.ppi.ppi-translate:before {
  content: "\e9ca";
}
.ppi.ppi-trash:before {
  content: "\e9cb";
}
.ppi.ppi-trending-down:before {
  content: "\e9cc";
}
.ppi.ppi-trending-up:before {
  content: "\e9cd";
}
.ppi.ppi-truck:before {
  content: "\e9ce";
}
.ppi.ppi-upload:before {
  content: "\e9cf";
}
.ppi.ppi-user:before {
  content: "\e9d0";
}
.ppi.ppi-user-add:before {
  content: "\e9d1";
}
.ppi.ppi-user-circle1:before {
  content: "\e9d2";
}
.ppi.ppi-user-group:before {
  content: "\e9d3";
}
.ppi.ppi-user-remove:before {
  content: "\e9d4";
}
.ppi.ppi-users:before {
  content: "\e9d5";
}
.ppi.ppi-variable:before {
  content: "\e9d6";
}
.ppi.ppi-video-camera:before {
  content: "\e9d7";
}
.ppi.ppi-view-boards:before {
  content: "\e9d8";
}
.ppi.ppi-view-grid:before {
  content: "\e9d9";
}
.ppi.ppi-view-grid-add:before {
  content: "\e9da";
}
.ppi.ppi-view-list:before {
  content: "\e9db";
}
.ppi.ppi-volume-off:before {
  content: "\e9dc";
}
.ppi.ppi-volume-up:before {
  content: "\e9dd";
}
.ppi.ppi-wifi:before {
  content: "\e9de";
}
.ppi.ppi-x:before {
  content: "\e9df";
}
.ppi.ppi-x-circle:before {
  content: "\e9e0";
}
.ppi.ppi-zoom-in:before {
  content: "\e9e1";
}
.ppi.ppi-zoom-out:before {
  content: "\e9e2";
}
.ppi.ppi-service:before {
  content: "\e9e3";
}
.ppi.ppi-pin:before {
  content: "\e9e4";
}
.ppi.ppi-chevron-down-alt:before {
  content: "\e9e5";
}
.ppi.ppi-chevron-up-alt:before {
  content: "\e9e6";
}
.ppi.ppi-divider-horizontal:before {
  content: "\e9e7";
}
.ppi.ppi-divider-vertical:before {
  content: "\e9e8";
}
.ppi.ppi-radiobtn:before {
  content: "\e9e9";
}
.ppi.ppi-radiobtn-on:before {
  content: "\e9ea";
}
.ppi.ppi-checkbox:before {
  content: "\e9eb";
}
.ppi.ppi-checkbox-on:before {
  content: "\e9ed";
}
.ppi.ppi-checkbox-part:before {
  content: "\e9f9";
}
.ppi.ppi-emoji-neutral:before {
  content: "\e9ec";
}
.ppi.ppi-polygons:before {
  content: "\e9ee";
}
.ppi.ppi-pig:before {
  content: "\e9ef";
}
.ppi.ppi-loading:before {
  content: "\e9f4";
}
.ppi.ppi-division:before {
  content: "\e9f3";
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-1turn);
  }
}

.ppi.ppi-spin {
  animation: spin 2s linear infinite;
  display: block;
}

.ppi.ppi-pulse {
  animation: spin 1s steps(8) infinite;
  display: block;
}

.ppi-1x {
  font-size: 100%;
}

.ppi-2x {
  font-size: 120%;
}

.ppi-3x {
  font-size: 140%;
}

.ppi-4x {
  font-size: 160%;
}

.ppi-5x {
  font-size: 180%;
}

.ppi-6x {
  font-size: 200%;
}

.ppi-7x {
  font-size: 250%;
}

.ppi-rotate-90 {
  transform: rotate(90deg) !important;
}

.ppi-rotate-180 {
  transform: rotate(180deg) !important;
}

.ppi-rotate-270 {
  transform: rotate(270deg) !important;
}

.ppi.ppi-flip-h {
  transform: scaleX(-1);
}

.ppi.ppi-flip-v {
  transform: scaleY(-1);
}

/* PPUploader.css

   Keyframes
*/
@keyframes progress {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -70px 0;
    }
}

/* Typography & text */
.uploadErrorTypography {
    color: #2B304F;
    font-family: Inter;
    font-weight: 600;
    font-size: 14px;
}

.progressBarTypo1,
.progressBarTypo2,
.uploaderNoFileTypo {
    color: #2B304F;
    font-family: Inter;
    font-size: 14px;
    font-weight: 600;
}

.progressBarTypo1 {
    margin-top: 16px;
}

/* Layout containers */
.uploadErrorGrid {
    display: flex; /* to match alignContent / justifyContent */
    align-content: center;
    justify-content: center;
    text-align: center;
    font-family: Inter;
}

.uploadErrorItem {
    display: flex;
    align-content: center;
    justify-content: center;
    text-align: center;
    font-family: Inter;
}

.progressBarGrid {
    padding-top: 0;
}

.uploaderContainerDashed {
    background-color: #FFFFFF;
    border: 3px dotted #B8CCEA;
    border-radius: 8px;
    display: flex;
    outline: none;
    padding: 60px;
    text-align: center;
    cursor: pointer;
}

.active {
    animation: progress 2s linear infinite !important;
    /* background-image: repeating-linear-gradient( -45deg, #ffffff, #ffffff 25px, #FAFDFF 25px, #FAFDFF 50px ); */
    background-size: 150% 100%;
    /* border: 2px solid #B8CCEA; */ 
    /* background-color: #FFFFFF; */
    border-radius: 8px;
}

/* Circles & buttons */
.uploaderNoFileGrid {
    background-color: #FAFAFA;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.uploaderButton,
.uploaderButton1,
.uploaderButton2,
.progressBarButton {
    margin-top: 50px;
    text-transform: none;
    font-family: Inter;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 20px;
    background-color: #B8CCEA;
    border: none;
    cursor: pointer;
}

.uploaderButtonDisabled {
    margin-top: 50px;
    text-transform: none;
    font-family: Inter;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 20px;
    background-color: #B8CCEA;
    opacity: 0.5;
    cursor: not-allowed;
}

/* Inner circles */
.circularProgressLabelCP {
    color: #B8CCEA;
}

.circularProgressLabel1,
.circularProgressLabel2 {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: Inter;
}

.circularProgressLabel1 {
    background-color: #B8CCEA;
    width: 90px;
    height: 90px;
}

.circularProgressLabel2 {
    background-color: #FAFAFA;
    width: 85px;
    height: 85px;
}

/* Small utility */
.fontFamily {
    font-family: Inter;
    font-size: 14px;
}

.chat-container {
    display: flex;
    flex-direction: column;
    /* max-width: calc(60vw); */
    min-height: calc(100vh - 175px);
    min-width: calc(100%);
}

.suggestions-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
}
.hostAccountsByMonth {
    display: contents;
    width: 100% !important;
}

.hostAccount {
    width: 100% !important;
    display: contents;
}

.graphAccount {
    display: contents;
    width: 100% !important;
}
.headerLogos {
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    width: 100% !important;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns */
    grid-template-rows: repeat(2, auto);
    /* 2 rows */
    grid-gap: 12px;
    gap: 12px;
    /* Space between cards */
    width: 100%;
    margin-top: 5px;
}

.suggestion-card > div {
    padding: 10px !important;
}

.suggestion-card {
    font-size: 12px !important;
    cursor: pointer;
    margin: 0 !important;
    /* Center cards within their grid cells */
    max-width: 340px;
    color: var(--text-light) !important;
    overflow-y: auto !important;
    max-height: 120px;
    background-color: transparent !important;
    border: 1px solid var(--background-light);
    font-weight: 300;
    border-radius: 8px !important;
    padding: 5px;
}

.suggestion-card:hover {
    border: 1px solid var(--color-secondary-lime);
    background-color: #fff !important;
}

.darkgrafittibutton {
    color: #2E1956 !important;
}

ol {
    padding-left: 20px !important;
}

.greybutton {
    color:var(--text-light) !important;
    background-color: transparent !important;
    
}

.greybutton:hover {
    color:var(--text-default) !important;
    background-color: transparent !important;    
}

.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.message-list {
    max-height: calc(100vh - 279px);
    overflow-y: auto;
    padding: 16px;
    flex-grow: 1;    
}

.aix-file-artifacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0 2px;
    padding: 12px 0 0;
    border-top: 1px solid #e7ebf3;
}

.aix-file-artifacts-title {
    color: #202b45;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em;
}

.aix-file-artifact {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 8px 10px;
    border: 1px solid #d9e2f1;
    background-color: #f8faff !important;
    border-radius: 8px !important;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.aix-file-artifact:hover {
    border-color: #9eb9e5;
    background-color: #f2f6fd !important;
    box-shadow: 0 2px 8px rgba(39, 79, 135, 0.08);
}

.aix-file-artifact:focus-visible {
    outline: 2px solid #356bb3;
    outline-offset: 2px;
}

.aix-file-artifact:disabled {
    cursor: wait;
    opacity: 0.72;
}

.aix-file-artifact-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background-color: #e6effd;
}

.aix-file-artifact-icon {
    color: #356bb3;
    font-size: 1.05rem;
}

.aix-file-artifact-details {
    min-width: 0;
    flex: 1 1;
}

.aix-file-artifact-name {
    color: #263c63;
    font-weight: 600 !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.aix-file-artifact-status {
    flex: 0 0 auto;
    color: #315d9d;
    font-weight: 700;
}

@media (max-width: 600px) {
    .aix-file-artifact {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .aix-file-artifact-details {
        max-width: calc(100% - 42px);
    }

}

.message-item {
    display: flex;
    padding: 8px 0;
    width: 100%;
}

.message-item.user {
    justify-content: flex-end;
}

.message-item.assistant {
    justify-content: flex-start;
}

.message-paper {
    max-width: 95%;
    min-width: 60%;
    padding: 12px;
}

.message-paper.user {
    background-color: #8C40E3;
    border: none;
    border-radius: 8px 8px 0px 8px;
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);*/
}

.message-paper.user .message-content {
    color: #ffffff !important;
}

.message-content + div {
    margin-bottom: 0 !important;
}

.chat-container .MuiPaper-root {
    box-shadow: none;
}

.message-paper.assistant {
    background-color: #fff;
    color: var(--text-dark);
    border: 1px solid #e0e0e0;
    border: 1px solid var(--background-light, #e0e0e0);
    border-radius: 8px 8px 8px 0px;
    max-width: calc(25vw - 90px);
    overflow-x: auto;
    width: 100%;
}

.right-sidepanel.focused .message-paper.assistant {
    background-color: #fff;
    color: #333333;
    border: 1px solid #e0e0e0;
    border: 1px solid var(--background-light, #e0e0e0);
    border-radius: 8px 8px 8px 0px;
    max-width: calc(75vw - 90px);
    overflow-x: auto;
}

.message-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: .2rem;
    align-items: center;
}

.message-header .assistant-name-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
}

.message-header .assistant-name-icon {
    color: #8C40E3;
    font-size: 0.85rem;
}

.message-header .assistant-name {
    font-weight: 600;
    color: #202b45;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.8rem;
}

.message-header .message-timestamp {
    color: var(--text-light);
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.75rem;
}

.message-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.message-content { 
    word-break: break-word;
    font-size: 13px !important;
}

.message-paper.assistant .message-content h1,
.message-paper.assistant .message-content h2,
.message-paper.assistant .message-content h3,
.message-paper.assistant .message-content h4,
.message-paper.assistant .message-content h5,
.message-paper.assistant .message-content h6 {
    margin-top: 20px;
    margin-bottom: 12px;
    line-height: 1;
}

.message-paper.assistant .message-content > div > ul {
    margin-top: 15px;
    margin-bottom: 15px;
    padding-left: 30px;
    list-style-position: outside;
}

.message-paper.assistant .message-content > div > ol {
    margin-top: 15px;
    margin-bottom: 15px;
    padding-left: 10px;
    list-style-position: outside;
}

.message-paper.assistant .message-content li ul,
.message-paper.assistant .message-content li ol {
    margin-top: 6px;
    margin-bottom: 6px;
    padding-left: 20px;
    list-style-position: outside;
}

.message-paper.assistant .message-content ol {
    list-style: none;
    padding-left: 5px !important;
}

.message-paper.assistant .message-content ol:nth-of-type(1) {
    counter-reset: list-number 0;
}

.message-paper.assistant .message-content ol {
    list-style: none;
}

.message-paper.assistant .message-content ol > li {
    counter-increment: list-number;
    display: list-item;
    margin-bottom: 15px;
    line-height: 1.2;
}

.message-paper.assistant .message-content ol > li::before {
    content: counter(list-number) ". ";
    font-weight: bold;
    margin-right: 0px;
}

/* Reseta o contador após cada header */
.message-paper.assistant .message-content h1,
.message-paper.assistant .message-content h2,
.message-paper.assistant .message-content h3,
.message-paper.assistant .message-content h4,
.message-paper.assistant .message-content h5,
.message-paper.assistant .message-content h6 {
    counter-reset: list-number 0;
}

.message-paper.assistant .message-content ul > li {
    list-style-type: disc;
    display: list-item;
    margin-bottom: 15px;
    line-height: 1.2;
}

.message-paper.assistant .message-content li ul,
.message-paper.assistant .message-content li ol {
    margin-top: 6px;
    margin-bottom: 6px;
    padding-left: 20px;
}

.message-paper.assistant .message-content li li {
    margin-bottom: 4px;
    line-height: 1.3;
    display: list-item;
}

.message-paper.assistant .message-content p {
    margin-bottom: 15px;
}

.message-paper.assistant .message-content p:last-child {
    margin-bottom: 0;
}

@keyframes borderAnimation {
    0%, 100% {
        border-color: #00FF00;
    }
    50% {
        border-color: #00FFFF;
    }
}

.message-paper.assistant.typing-indicator {
    min-width: 0;
    min-width: initial;
    max-width: fit-content;
    padding: 8px 12px;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid #00FF00;
    animation: borderAnimation 3s infinite ease-in-out;
}

.typing-indicator-text {
    color: #9aa3af;
    color: var(--text-light, #9aa3af);
    white-space: nowrap;
}

.suggestions-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 32px;
}

.suggestions-list {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-top: 16px;
}


.input-container {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 50%;
}

.container-input-loading{
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

.more-prompts-button {
    text-transform: none;
    font-weight: 400;
    color: #757575;
    font-size: 16px;
    justify-content: flex-start;
    padding-left: 0px;
}

.textarea-container {
    display: flex;
    align-items: flex-end;
    margin-top: 0px;
}

.list-container {
    display: flex;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
}

.chat-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Ensure the chat container fills the available height */
    border: 0px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    justify-content: space-between;
}

.chat-messages {
    font-family: "Ubuntu", sans-serif;
    flex: 1 1;
    /* Allow the messages to fill the available space */
    overflow-y: auto;
    padding: 10px;
}

.message {
    font-family: "Ubuntu", sans-serif;
    background-color: #f3f3f3;
    padding: 8px;
    margin-bottom: 5px;
    border-radius: 5px;
}

.chat-input {
    display: flex;
    padding: 10px;
}

.chat-input input {
    flex: 1 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.chat-input .send-button {
    margin-left: 10px;
    padding: 8px 15px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
}

.chat-input .send-button:hover {
    background-color: #0056b3;
}

.chat-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.message-list {
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px;
}

.message-input {
    display: flex;
    align-items: center;
    padding: 10px;
    border-top: 1px solid #e0e0e0;
}

.text-field {
    flex-grow: 1;
    margin-right: 10px;
}

.icon-button {
    margin-right: 10px;
}

.icon-button-send {
    padding: 0.3rem 1.2rem;
    border: 0;
    border-radius: 4px;
    height: 55px;
    cursor: pointer;
    font-weight: 600;
    font-family: "Ubuntu", sans-serif;
    min-width: 55px;
    FONT-WEIGHT: 500;
    font-size: large;
}

.resetThread {
    width: 20px;
    height: 20px;
    padding-left: 5px;
}

.resetThread svg {
    width: 100%;
    height: 100%;
}

/* Estilos para tabelas markdown */
.markdown-table-actions {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin: 8px 2px 0;
}

.markdown-table-action {
    align-items: center;
    appearance: none;
    background: transparent;
    border: 0;
    color: #607086;
    cursor: pointer;
    display: inline-flex;
    font-size: 11px;
    font-weight: 600;
    gap: 4px;
    line-height: 1.2;
    padding: 2px 0;
    font-family: inherit;
}

.markdown-table-action:hover {
    color: #1f2937;
}

.markdown-table-action:focus-visible {
    border-radius: 2px;
}

.markdown-table-action.is-complete {
    color: #26734d;
}

.markdown-table-action-icon {
    font-size: 14px;
    line-height: 1;
}

.message-paper.assistant .message-content table {
    width: max-content;
    min-width: 100%;
    table-layout: auto;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 12px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.message-paper.assistant .message-content table th,
.message-paper.assistant .message-content table td {
    max-width: 280px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.message-paper.assistant .message-content table thead {
    background-color: #f5f5f5;
}

.message-paper.assistant .message-content table th {
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
    white-space: normal;
}

.message-paper.assistant .message-content table td {
    padding: 8px 12px;
    border-bottom: 1px solid #e8e8e8;
    color: #555;
    vertical-align: top;
}

/* Alinhar numeros a direita */
.message-paper.assistant .message-content table td:nth-child(n+2) {
    text-align: right;
}

.message-paper.assistant .message-content table th:nth-child(n+2) {
    text-align: right;
}

/* Primeira coluna sempre alinhada a esquerda */
.message-paper.assistant .message-content table td:first-child,
.message-paper.assistant .message-content table th:first-child {
    text-align: left;
}

.message-paper.assistant .message-content table tbody tr:hover {
    background-color: #fafafa;
}

.message-paper.assistant .message-content table tbody tr:last-child td {
    border-bottom: none;
}

/* Tabelas mantêm a largura do balão e não criam rolagem horizontal. */
.message-paper.assistant .message-content > div {
    max-width: 100%;
    overflow-x: auto;
}

.message-paper.assistant .message-content table th:nth-child(n+5),
.message-paper.assistant .message-content table td:nth-child(n+5) {
    display: none;
}
/* ExpandingTextarea.css */
.textarea-container-parent {
    width: 100%;
}

.textarea-container {
    display: flex;
    align-items: center;
    border: 1px solid var(--line-outline);
    padding: 8px 12px;
    border-radius: 8px;
    background-color: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
    flex-grow: 1;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    /* Light */
}

.textarea-container.focused {
    border-color: var(--color-secondary-lime);
    box-shadow: 0 0 0 1px #DFFF00;
}

.textarea-container .textarea {
    line-height: 24px;
    width: 100%;
    border: none;
    outline: none;
    resize: none;
    background-color: transparent;
    font-size: 14px;
    color: var(--text-default);
    flex-grow: 1;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    margin-bottom: 4px;
}

.send-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 6px 8px;
    margin-left: 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;

}

.send-button.focused {
    background-color: var(--color-secondary-lime);
}

.send-button-icon {
    transition: color 0.3s;
}

.send-button-icon.focused {
    color: var(--text-default);
}

.send-button-icon.unfocused {
    color: #cccccf;
}
.IcebreakerQuestions_icebreakerquestionscontainer__e8lgP {
    border-radius: 8px;
    position: relative;
    display: flex;
    max-width: calc(35vw);
    flex-direction: column;
    color: var(--text-light);
    justify-content: center;
    font: 300 10px/12px Ubuntu, -apple-system, Roboto, Helvetica, sans-serif;
    overflow: hidden;
}

.IcebreakerQuestions_decorativeArrow__FEQ9S {    
    position: relative; /* Use absolute para posicionar corretamente */
    width: 16px;
    height: 16px;
    background-color: #fff;
    rotate: 45deg;
    left: 50%; /* Ajuste conforme necessário */
    bottom: 2px; /* Ajuste conforme necessário */
    transform: translateX(-50%);
}

.IcebreakerQuestions_questionsWrapper__IMosE {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: start;
    cursor: grab; /* Change cursor to indicate draggable area */
    padding: 12px 0;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 0 18px rgba(71, 31, 204, 0.15) !important;
    margin: 18px 18px 0 18px;
    
}

.IcebreakerQuestions_icon__LWJfP {    
    cursor: pointer;
    margin: auto 4px;    
}
 
.IcebreakerQuestions_questionsContainer__Yvpyy {
    overflow-x: auto;
    display: flex;
    align-self: stretch;
    align-items: start;
    gap: 8px;
    flex: 1 1;
    margin: auto 0;
    scroll-behavior: smooth;
    /* Hide scrollbar */
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
}

    .IcebreakerQuestions_questionsContainer__Yvpyy::-webkit-scrollbar {
        display: none; /* For Chrome, Safari, and Opera */
    }


.IcebreakerQuestions_question__D6vkw {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    align-self: stretch;
    flex: 1 1;
    align-content: center;
    flex-wrap: wrap;
    border-radius: 8px;
    border: 1px solid #e2e6f3;
    border: 1px solid var(--Fundos-02, #e2e6f3);
    min-height: 40px;
    gap: 8px;
    min-width: 140px;
    padding: 4px 8px;
    cursor: pointer;    
}


.IcebreakerQuestions_question__D6vkw:hover {
    border: 1px solid var(--color-secondary-lime);
}
.markdown-table-content blockquote.markdown-observation,
.markdown-table-content blockquote {
    margin: 12px 0 16px;
    padding: 8px 14px;
    border: 1px solid #b6e1f2;
    border-radius: 4px;
    background: #e5f6fd;
    color: #014361;
    font-size: 13px;
    line-height: 1.45;
}

.markdown-table-content blockquote::before {
    content: 'ⓘ';
    display: inline-block;
    margin-right: 8px;
    color: #0288d1;
    font-size: 15px;
    font-weight: 600;
    vertical-align: -1px;
}

.markdown-table-content blockquote p {
    display: inline;
    margin: 0;
}

.markdown-table-content blockquote strong {
    color: #014361;
    font-weight: 700;
}

.markdown-table-actions {
    display: flex;
    gap: 8px;
    margin: 8px 0;
}

.markdown-table-action {
    border: 1px solid #d9e2f1;
    border-radius: 4px;
    background: #fff;
    color: #315d9d;
    cursor: pointer;
    padding: 4px 8px;
}

.markdown-table-action-icon {
    margin-right: 4px;
}

/* O LCDashboard aplica width:auto (shrink-to-fit) ao right-sidepanel não fixado/focado,
   então sem um limite o painel cresce até o max-content dos filhos (ex.: .suggestions-grid
   com colunas 1fr), ficando bem mais largo que os demais side panels da plataforma (Filtros,
   AI do FinOps, etc.). Mesma largura padrão já usada em finOps/resume (.right-sidepanel:not
   (.pinned):not(.focused)) — aplicada aqui via :has(.chat-container) para valer em qualquer
   página que hospede este chat (CMS Resume, Copiloto de Operações) sem depender de uma classe
   específica do dashboard hospedeiro. */

/* Ajuste de largura usado pelo painel lateral do CMS. */
.lcdashboard .right-sidepanel:has(.chat-container):not(.pinned):not(.focused) {
    width: clamp(400px, 30vw, 560px) !important;
    min-width: 0;
    max-width: 100%;
}

.cms-suggestion-card {
    width: 100%;
}

/* Especificidades do CMS: o painel pode expandir e oferece mais opções em foco. */
.suggestions-container {
    align-items: stretch;
    width: 100%;
}

.hostAccountsByMonth {
    display: contents;
    width: 100% !important;
}

.hostAccount {
    width: 100% !important;
    display: contents;
}

.graphAccount {
    display: contents;
    width: 100% !important;
}

.headerLogos {
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    width: 100% !important;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(60px, auto);
    grid-gap: 12px;
    gap: 12px;
    width: 100%;
    margin-top: 5px;
}

.suggestion-card>div {
    padding: 10px !important;
}

.cms-suggestion-card.MuiCard-root {
    width: 100%;
    min-height: 60px;
    max-height: 120px;
    display: flex;
    align-items: center;
    font-family: inherit;
    line-height: 1.4;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.cms-suggestion-card.MuiCard-root:hover,
.cms-suggestion-card.MuiCard-root:focus,
.cms-suggestion-card.MuiCard-root:focus-within {
    box-shadow: 0 4px 16px rgba(71, 31, 204, 0.18);
}

.right-sidepanel.focused .cms-suggestion-card.MuiCard-root {
    justify-content: center;
    min-height: 76px;
    font-size: 14px;
    border-color: #d8dced;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fd 100%);
}

.right-sidepanel.focused .cms-suggestion-card .MuiCardContent-root {
    text-align: center;
    width: 100%;
    padding: 14px 16px;
}

.right-sidepanel.focused .suggestions-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 12px;
}

@media (max-width: 900px) {
    .right-sidepanel.focused .suggestions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.cms-suggestion-card .MuiCardContent-root,
.cms-suggestion-card .MuiCardContent-root:last-child {
    width: 100%;
    padding: 10px;
    font: inherit;
    color: inherit;
}

.right-sidepanel.focused .message-list:has(.suggestions-container) {
    display: flex;
    flex-direction: column;
}

.right-sidepanel.focused .cms-suggestion-card.MuiCard-root {
    justify-content: center;
    min-height: 76px;
    font-size: 14px;
    border-color: #d8dced;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fd 100%);
}

.message-list {
    flex: 1 1;
    min-height: 0;
    overflow-y: auto;
    padding: 16px;
}

.right-sidepanel.focused .message-list:has(.suggestions-container) {
    display: flex;
    flex-direction: column;
}

.right-sidepanel.focused .cms-suggestion-card .MuiCardContent-root {
    text-align: center;
    padding: 14px 16px;
}

.right-sidepanel.focused .suggestions-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 12px;
}

@media (max-width: 900px) {
    .right-sidepanel.focused .suggestions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .lcdashboard .right-sidepanel:has(.chat-container):not(.pinned):not(.focused) {
        width: 100% !important;
    }
}

.message-paper {
    max-width: 95%;
    min-width: 60%;
    padding: 12px;
}

.message-paper.user {
    background-color: #8C40E3;
    border: none;
    border-radius: 8px 8px 0px 8px;
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);*/
}

.message-paper.user .message-content {
    color: #ffffff !important;
}

.message-content+div {
    margin-bottom: 0 !important;
}

.chat-container .MuiPaper-root {
    box-shadow: none;
}

.message-paper.assistant {
    background-color: #ffffff;
    color: var(--text-dark);
    border: 1px solid var(--background-light);
    border-radius: 8px 8px 8px 0px;
    max-width: calc(25vw - 90px);
    overflow-x: auto;
    width: 100%;
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/
}


.message-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: .2rem;
    align-items: center;
}

.message-header .assistant-name-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
}

.message-header .assistant-name-icon {
    color: #8C40E3;
    font-size: 0.85rem;
}

.message-header .assistant-name {
    font-weight: 600;
    color: #202b45;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.8rem;
}

.message-header .message-timestamp {
    color: var(--text-light);
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.75rem;
}

.message-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.message-content {
    word-break: break-word;
    font-size: 13px !important;
}

.message-paper.assistant .message-content h1,
.message-paper.assistant .message-content h2,
.message-paper.assistant .message-content h3,
.message-paper.assistant .message-content h4,
.message-paper.assistant .message-content h5,
.message-paper.assistant .message-content h6 {
    margin-top: 20px;
    margin-bottom: 12px;
    line-height: 1;
}

.message-paper.assistant .message-content>div>ul {
    margin-top: 15px;
    margin-bottom: 15px;
    padding-left: 30px;
    list-style-position: outside;
}

.message-paper.assistant .message-content>div>ol {
    margin-top: 15px;
    margin-bottom: 15px;
    padding-left: 10px;
    list-style-position: outside;
}

.message-paper.assistant .message-content li ul,
.message-paper.assistant .message-content li ol {
    margin-top: 6px;
    margin-bottom: 6px;
    padding-left: 20px;
    list-style-position: outside;
}

.message-paper.assistant .message-content ol {
    list-style: none;
    padding-left: 5px !important;
}

.message-paper.assistant .message-content ol:nth-of-type(1) {
    counter-reset: list-number 0;
}

.message-paper.assistant .message-content ol {
    list-style: none;
}

.message-paper.assistant .message-content ol>li {
    counter-increment: list-number;
    display: list-item;
    margin-bottom: 15px;
    line-height: 1.2;
}

.message-paper.assistant .message-content ol>li::before {
    content: counter(list-number) ". ";
    font-weight: bold;
    margin-right: 0px;
}

/* Reseta o contador após cada header */
.message-paper.assistant .message-content h1,
.message-paper.assistant .message-content h2,
.message-paper.assistant .message-content h3,
.message-paper.assistant .message-content h4,
.message-paper.assistant .message-content h5,
.message-paper.assistant .message-content h6 {
    counter-reset: list-number 0;
}

.message-paper.assistant .message-content ul>li {
    list-style-type: disc;
    display: list-item;
    margin-bottom: 15px;
    line-height: 1.2;
}

.message-paper.assistant .message-content li ul,
.message-paper.assistant .message-content li ol {
    margin-top: 6px;
    margin-bottom: 6px;
    padding-left: 20px;
}

.message-paper.assistant .message-content li li {
    margin-bottom: 4px;
    line-height: 1.3;
    display: list-item;
}

.message-paper.assistant .message-content p {
    margin-bottom: 15px;
}

.message-paper.assistant .message-content p:last-child {
    margin-bottom: 0;
}

@keyframes borderAnimation {
    0%, 100% {
        border-color: #00FF00;
    }
    50% {
        border-color: #00FFFF;
    }
}

.message-paper.assistant.typing-indicator {
    min-width: 0;
    min-width: initial;
    max-width: fit-content;
    padding: 8px 12px;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid #00FF00;
    animation: borderAnimation 3s infinite ease-in-out;
}

.suggestions-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 32px;
}

.suggestions-list {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-top: 16px;
}


.input-container {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 50%;
}

.more-prompts-button {
    text-transform: none;
    font-weight: 400;
    color: #757575;
    font-size: 16px;
    justify-content: flex-start;
    padding-left: 0px;
}

.textarea-container {
    display: flex;
    align-items: flex-end;
    margin-top: 0px;
}

.list-container {
    display: flex;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%
}

.chat-container {
    display: flex;
    flex-direction: column;
    /* Ensure the chat container fills the available height */
    border: 0px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    justify-content: space-between;
    width: 100%;
}

.chat-messages {
    font-family: "Ubuntu", sans-serif;
    flex: 1 1;
    /* Allow the messages to fill the available space */
    overflow-y: auto;
    padding: 10px;
}

.message {
    font-family: "Ubuntu", sans-serif;
    background-color: #f3f3f3;
    padding: 8px;
    margin-bottom: 5px;
    border-radius: 5px;
}

.chat-input {
    display: flex;
    padding: 10px;
}

.chat-input input {
    flex: 1 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.chat-input .send-button {
    margin-left: 10px;
    padding: 8px 15px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
}

.chat-input .send-button:hover {
    background-color: #0056b3;
}

.message-list {
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px;
}

.message-input {
    display: flex;
    align-items: center;
    padding: 10px;
    border-top: 1px solid #e0e0e0;
}

.text-field {
    flex-grow: 1;
    margin-right: 10px;
}

.icon-button {
    margin-right: 10px;
}

.icon-button-send {
    padding: 0.3rem 1.2rem;
    border: 0;
    border-radius: 4px;
    height: 55px;
    cursor: pointer;
    font-weight: 600;
    font-family: "Ubuntu", sans-serif;
    min-width: 55px;
    FONT-WEIGHT: 500;
    font-size: large;
}

.resetThread {
    width: 20px;
    height: 20px;
    padding-left: 5px;
}

.resetThread svg {
    width: 100%;
    height: 100%;
}

/* Estilos para tabelas markdown */
.markdown-table-actions {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin: 8px 2px 0;
}

.markdown-table-action {
    align-items: center;
    appearance: none;
    background: transparent;
    border: 0;
    color: #607086;
    cursor: pointer;
    display: inline-flex;
    font-size: 11px;
    font-weight: 600;
    gap: 4px;
    line-height: 1.2;
    padding: 2px 0;
    font-family: inherit;
}

.markdown-table-action:hover {
    color: #1f2937;
}

.markdown-table-action:focus-visible {
    border-radius: 2px;
    outline: 2px solid #8ca8c8;
    outline-offset: 3px;
}

.markdown-table-action.is-complete {
    color: #26734d;
}

.message-paper.assistant .message-content table {
    width: max-content;
    min-width: 100%;
    table-layout: auto;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 12px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.message-paper.assistant .message-content table th,
.message-paper.assistant .message-content table td {
    max-width: 280px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.message-paper.assistant .message-content table thead {
    background-color: #f5f5f5;
}

.message-paper.assistant .message-content table th {
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
    white-space: normal;
}

.message-paper.assistant .message-content table td {
    padding: 8px 12px;
    border-bottom: 1px solid #e8e8e8;
    color: #555;
    vertical-align: top;
}

/* Alinhar numeros a direita */
.message-paper.assistant .message-content table td:nth-child(n+2) {
    text-align: right;
}

.message-paper.assistant .message-content table th:nth-child(n+2) {
    text-align: right;
}

/* Primeira coluna sempre alinhada a esquerda */
.message-paper.assistant .message-content table td:first-child,
.message-paper.assistant .message-content table th:first-child {
    text-align: left;
}

.message-paper.assistant .message-content table tbody tr:hover {
    background-color: #fafafa;
}

.message-paper.assistant .message-content table tbody tr:last-child td {
    border-bottom: none;
}

/* Tabelas mantêm a largura do balão e não criam rolagem horizontal. */
.message-paper.assistant .message-content>div {
    max-width: 100%;
    overflow-x: auto;
}

.message-paper.assistant .message-content table th:nth-child(n+5),
.message-paper.assistant .message-content table td:nth-child(n+5) {
    display: none;
}

/* PPTextField Unified Styles */

/* ===== BASE COMPONENTS ===== */

/* Labels */
    .pp-textfield__label {
        display: flex;
        align-items: center;
        gap: 4px;
        margin-bottom: 4px;
        font-family: Inter, sans-serif;
        font-size: 12px;
        font-weight: 600;
        color: #333;
        height: 18px;
    }

    .pp-textfield__label i {
        color: #666;
        cursor: help;
        font-size: 14px;
    }

/* Help text */
    .pp-textfield__help {
        font-size: 13px;
        color: #666;
        font-family: Inter, sans-serif;
        margin-top: 4px;
    }

/* Container principal */
    .pp-textfield__item {
        position: relative;
        width: 100%;
    }

    .pp-textfield__item .pp-tooltip {
        width: 100%;
    }

/* Container para input + suggestions */
    .pp-textfield__input-container {
        position: relative;
        width: 100%;
    }

/* Tooltip wrapper */
    .pp-textfield__tooltip {
        display: flex;
        align-items: flex-end;
        height: 100%;
    }

/* ===== INPUT STYLES ===== */

/* Base input styles */
    .pp-textfield__root,
    .pp-textfield__multiline {
        margin-top: 3px;
        background-color: white;
        width: 100%;
        font-family: Inter, sans-serif;
        font-size: 14px;
        height: 40px;
        border-radius: 4px;
        transition: all 0.2s ease;
    }

    /* Hover states */
    .pp-textfield__root:hover .MuiOutlinedInput-notchedOutline,
    .pp-textfield__multiline:hover .MuiOutlinedInput-notchedOutline {
        border: 1px solid #898DA6 !important;
    }

    /* Focus states */
    .pp-textfield__root.Mui-focused .MuiOutlinedInput-notchedOutline,
    .pp-textfield__multiline.Mui-focused .MuiOutlinedInput-notchedOutline {
        border: 1px solid #141B4D !important;
    }

/* ===== DISABLED STATE ===== */

    .pp-textfield__root_disabled,
    .pp-textfield__multiline_disabled {
        margin-top: 3px;
        background-color: #EBEBEB;
        font-size: 14px;
        height: 40px;
        font-family: Inter, sans-serif;
        width: 100% !important;
        opacity: 0.6;
        pointer-events: none;
    }

    .pp-textfield__root_disabled:hover .MuiOutlinedInput-notchedOutline,
    .pp-textfield__multiline_disabled:hover .MuiOutlinedInput-notchedOutline {
        border: none !important;
    }

/* ===== ERROR STATE ===== */

    .pp-textfield__root_required_error,
    .pp-textfield__multiline_required_error {
        margin-top: 3px;
        background-color: white;
        font-size: 14px;
        height: 40px;
        font-family: Inter, sans-serif;
        border: 2px solid #D35555 !important;
        border-radius: 4px;
        padding: 7px 15px;
    }

    .pp-textfield__root_required_error.Mui-focused .MuiOutlinedInput-notchedOutline,
    .pp-textfield__multiline_required_error.Mui-focused .MuiOutlinedInput-notchedOutline {
        border: 2px solid #D35555 !important;
    }

/* ===== REQUIRED STATE ===== */

    .pp-textfield__root_required,
    .pp-textfield__multiline_required {
        margin-top: 3px;
        background-color: white;
        font-size: 14px;
        height: 40px;
        font-family: Inter, sans-serif;
        border-left: 3px solid #FFB800;
        border-radius: 4px;
        padding: 10px 14px;
    }

    .pp-textfield__root_required:hover .MuiOutlinedInput-notchedOutline,
    .pp-textfield__multiline_required:hover .MuiOutlinedInput-notchedOutline {
        border-left-color: #FFB800 !important;
        border-color: #898DA6 !important;
    }

    .pp-textfield__root_required.Mui-focused .MuiOutlinedInput-notchedOutline,
    .pp-textfield__multiline_required.Mui-focused .MuiOutlinedInput-notchedOutline {
        border-left-color: #FFB800 !important;
        border-color: #141B4D !important;
    }

/* ===== READONLY STATE ===== */

    .pp-textfield__root_readOnly,
    .pp-textfield__multiline_readOnly {
        cursor: default;
        margin-top: 3px;
        font-size: 14px;
        font-family: Inter, sans-serif;
        min-height: 40px;
        background-color: #EBEBEB;
    }

    .pp-textfield__root_readOnly:hover .MuiOutlinedInput-notchedOutline,
    .pp-textfield__multiline_readOnly:hover .MuiOutlinedInput-notchedOutline {
        border: 1px solid #898DA6 !important;
    }

    .pp-textfield__root_readOnly.Mui-focused .MuiOutlinedInput-notchedOutline,
    .pp-textfield__multiline_readOnly.Mui-focused .MuiOutlinedInput-notchedOutline {
        border: 1px solid #141B4D !important;
    }

/* ===== MULTILINE SPECIFIC ===== */

    .pp-textfield__multiline {
        min-height: 60px;
        resize: vertical;
        padding: 8px 12px;
        border: 1px solid #e0e0e0;
        outline: none;
    }

    .pp-textfield__multiline:focus {
        border-color: #141B4D;
        box-shadow: 0 0 0 2px rgba(20, 27, 77, 0.2);
    }

/* ===== SUGGESTIONS DROPDOWN ===== */
/* Renderizado via portal (position: fixed definido inline) para não ser
   cortado pelo overflow de containers pais (ex.: modais com scroll) */

    .pp-textfield__suggestions {
        background: white !important;
        border: 1px solid #d9dce6;
        border-radius: 8px;
        max-height: 200px;
        overflow-y: auto;
        animation: fadeIn 0.15s ease-out;
        z-index: 2000;
    }

    .pp-textfield__suggestions--down {
        box-shadow: 0 6px 20px rgba(20, 27, 77, 0.18);
    }

    .pp-textfield__suggestions--up {
        box-shadow: 0 -6px 20px rgba(20, 27, 77, 0.18);
    }

/* Suggestion items */
    .pp-textfield__suggestion-item {
        padding: 8px 12px;
        cursor: pointer;
        font-size: 14px;
        line-height: 1.4;
        border-bottom: 1px solid #f5f5f5;
        transition: background-color 0.2s ease;
        color: #2B304F;
        font-weight: 400;
        background: white;
    }

    .pp-textfield__suggestion-item:last-child {
        border-bottom: none;
    }

    /* Hover e selected states */
    .pp-textfield__suggestion-item:hover:not(.disabled),
    .pp-textfield__suggestion-item.selected:not(.disabled) {
        background-color: #E2E6F3;
        color: #20203F;
    }

    /* Disabled suggestions */
    .pp-textfield__suggestion-item.disabled {
        color: #8B90A3;
        cursor: not-allowed;
        background-color: #f9f9f9;
    }

    /* Loading state melhorado */
    .pp-textfield__suggestion-item.loading {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 12px;
        color: #666;
        font-style: normal;
        font-size: 14px;
        background: white !important;
        border-bottom: none;
        gap: 10px;
        min-height: 50px;
    }

        .pp-textfield__suggestion-item.loading .loading-spinner {
            width: 18px;
            height: 18px;
            border: 2px solid #e0e0e0;
            border-top: 2px solid #1976d2;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            flex-shrink: 0;
        }

        .pp-textfield__suggestion-item.loading .loading-text {
            color: #666;
            font-weight: 500;
        }

    /* Highlighted text in suggestions */
    .pp-textfield__suggestion-item b {
        font-weight: 700;
      /*  color: #1976d2;
        background-color: rgba(25, 118, 210, 0.1);*/
        padding: 1px 2px;
        border-radius: 2px;
    }

    /* Estado de "n�o encontrado" melhorado */
    .pp-textfield__suggestion-item.disabled {
        color: #8B90A3;
        cursor: not-allowed;
        background-color: #f9f9f9;
        font-style: italic;
        display: flex;
        align-items: center;
        padding: 12px;
    }

        .pp-textfield__suggestion-item.disabled strong {
            color: #666;
            font-weight: 600;
            font-style: normal;
        }

/* Anima��o do spinner */
    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

/* ===== SCROLLBAR CUSTOMIZATION ===== */

    .pp-textfield__suggestions::-webkit-scrollbar {
        width: 6px;
    }

    .pp-textfield__suggestions::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }

    .pp-textfield__suggestions::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 3px;
    }

    .pp-textfield__suggestions::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }

/* ===== ANIMATIONS ===== */

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-2px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

/* ===== RESPONSIVIDADE ===== */

    @media (max-width: 768px) {
        .pp-textfield__suggestions {
            max-height: 150px;
        }

        .pp-textfield__suggestion-item {
            padding: 10px 12px;
            font-size: 16px; /* Evita zoom no iOS */
        }

        .pp-textfield__label {
            font-size: 14px;
        }
    }

/* ===== DARK MODE SUPPORT ===== */

    @media (prefers-color-scheme: dark) {
        /* Manter fundo branco mesmo no dark mode */
        .pp-textfield__suggestions,
        .pp-text-field__sugestions {
            background: white !important;
            border-color: #ccc;
            box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.4);
        }

            .pp-textfield__suggestion-item,
            .pp-text-field__sugestions .suggestion,
            .pp-text-field__sugestions .sugestion {
                color: #2B304F;
                background: white !important;
                border-bottom-color: #f5f5f5;
            }

                .pp-textfield__suggestion-item:hover:not(.disabled),
                .pp-textfield__suggestion-item.selected:not(.disabled),
                .pp-text-field__sugestions .suggestion:hover:not(.disabled),
                .pp-text-field__sugestions .sugestion:hover:not(.disabled) {
                    background-color: #E2E6F3 !important;
                    color: #20203F;
                }

                .pp-textfield__suggestion-item.disabled,
                .pp-text-field__sugestions .suggestion.disabled,
                .pp-text-field__sugestions .sugestion.disabled {
                    color: #8B90A3;
                    background-color: #f9f9f9 !important;
                }

                .pp-textfield__suggestion-item.loading,
                .pp-text-field__sugestions .loading {
                    background: white !important;
                    color: #666;
                }

                .pp-textfield__suggestion-item b,
                .pp-text-field__sugestions .suggestion b,
                .pp-text-field__sugestions .sugestion b {
                    color: #1976d2;
                    background-color: rgba(25, 118, 210, 0.15);
                }

                .pp-textfield__suggestion-item.disabled strong,
                .pp-text-field__sugestions .suggestion.disabled strong,
                .pp-text-field__sugestions .sugestion.disabled strong {
                    color: #666;
                }

   

        .pp-textfield__help,
        .pp-text-field__help {
            color: #ccc;
        }
    }

    /* ===== UTILITY CLASSES ===== */

    .pp-textfield--small {
        height: 32px !important;
    }

    .pp-textfield--large {
        height: 48px !important;
    }

    .pp-textfield--no-margin {
        margin-top: 0 !important;
    }

    .pp-textfield--full-width {
        width: 100% !important;
    }

    /* Loading state melhorada para qualquer tema */
    .pp-textfield__loading-container {
        background: white !important;
        border-radius: 4px;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .pp-textfield__loading-pulse {
        background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
        background-size: 200% 100%;
        animation: loading-shimmer 1.5s infinite;
        padding: 12px;
        border-radius: 4px;
    }

    /* Empty state melhorado */
    .pp-textfield__empty-state {
        background: white !important;
        color: #8B90A3;
        font-style: italic;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 16px 12px;
    }

    /* Anima��es adicionais */
    @keyframes loading-shimmer {
        0% {
            background-position: -200% 0;
        }

        100% {
            background-position: 200% 0;
        }
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-10px);
        }

        60% {
            transform: translateY(-5px);
        }
    }

/* ===== LEGACY COMPATIBILITY ===== */

/* Manter compatibilidade com nomes antigos */
    .pp-text-field__label {
        display: flex;
        align-items: center;
        gap: 4px;
        margin-bottom: 4px;
        font-family: Inter, sans-serif;
        font-size: 12px;
        font-weight: 600;
        color: #333;
        height: 18px;
    }

    .pp-text-field__help {
        font-size: 13px;
        color: #666;
        font-family: Inter, sans-serif;
        margin-top: 4px;
    }

    .pp-text-field__sugestions {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        z-index: 300;
        background: white !important;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.25);
        max-height: 200px;
        overflow-y: scroll;
        padding: 10px;
        display: flex;
        flex-direction: column;
        min-width: 200px;
    }

    .pp-text-field__sugestions .suggestion,
    .pp-text-field__sugestions .sugestion {
        padding: 5px;
        cursor: pointer;
        font-size: 14px;
        color: #2B304F;
        font-weight: 400;
        border-radius: 4px;
        transition: background-color 0.2s ease;
        background: white;
    }

    .pp-text-field__sugestions .suggestion.disabled,
    .pp-text-field__sugestions .sugestion.disabled {
        cursor: not-allowed;
        color: #8B90A3;
        background-color: #f9f9f9;
    }

    .pp-text-field__sugestions .suggestion:hover:not(.disabled),
    .pp-text-field__sugestions .sugestion:hover:not(.disabled) {
        background-color: #E2E6F3;
        color: #20203F;
    }

    .pp-text-field__sugestions .loading {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px 5px;
        font-size: 14px;
        color: #666;
        font-style: normal;
        background: white !important;
        gap: 10px;
        min-height: 50px;
    }

        .pp-text-field__sugestions .loading::before {
            content: '';
            width: 18px;
            height: 18px;
            border: 2px solid #e0e0e0;
            border-top: 2px solid #1976d2;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            flex-shrink: 0;
        }

/* Tooltip wrapper - compatibilidade */
    .pp-text-field__tooltip {
        display: flex;
        align-items: flex-end;
        height: 100%;
    }

    .pp-text-field__item {
        position: relative;
    }

    .pp-text-field__item .pp-tooltip {
        width: 100%;
    }

/* PPGrid.css */

.ppgrid-form {
    padding: 32px;
    margin: 0;
    width: 100%;
    background-color: #E2E6F3;
    border-radius: 8px;
    box-shadow: 0 0 18px rgba(58, 79, 135, 0.3);
}

.ppgrid-formChildren {
    padding: 16px; /* theme.spacing(2) */
    margin: 8px; /* theme.spacing(1) */
    width: auto;
    background-color: #E2E6F3;
    border-radius: 8px;
    box-shadow: 0 0 18px rgba(58, 79, 135, 0.3);
}

.ppgrid-formDad {
    padding: 16px; /* theme.spacing(2) */
    width: auto;
    background-color: #E2E6F3;
    border-radius: 8px;
    box-shadow: 0 0 18px rgba(58, 79, 135, 0.3);
}

.ppgrid-default {
    background-color: transparent;
}

/* PPDialog.css */
.pp-backdrop {
    background: rgba(0, 0, 0, 0);
}

.pp-backdrop2 {
    background: none;
}

.pp-style-icons {
    font-size: 40px;
    color: #141B4D;
}

.pp-message-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    min-width: 496px;
}

.pp-background-container-message-box {
    background-color: #e2e6f3;
    box-shadow: 0px 0px 18px rgba(58, 79, 135, 0.3);
    border-radius: 8px;
}

    .pp-background-container-message-box:hover {
        border: none;
    }

.pp-background-top-message-box {
    background-color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 44px;
    text-align: center;
}

.pp-text-title-message-box {
    font-size: 16px;
    font-family: Inter;
    color: #2b304f;
    font-weight: 600;
    padding-top: 10px;
}

.pp-content-mid-container-message-box {
    display: flex;
    justify-content: center;
    padding: 44px 40px 0 40px;
}

.pp-content-command-container-message-box {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding-top: 44px;
}

.pp-padding-typography-message-box {
    padding: 10px;
    font-family: Inter;
    font-size: 14px;
    text-align: start;
}

.pp-padding-typography-message-box-no-icon {
    padding: 10px;
    font-family: Inter;
    font-size: 14px;
    text-align: center;
}

.pp-direction-icon {
    text-align: center;
}

.pp-button-ok-alone,
.pp-button-ok,
.pp-button-cancelar,
.pp-button-sim,
.pp-button-nao,
.pp-button-nao2 {
    background-color: #fff;
    color: #141b4d;
    border: 1px solid #898da6;
    font-weight: 600;
    font-family: Inter;
    text-transform: none;
    font-size: 14px;
    width: 89px;
    margin-bottom: 16px;
    border-radius: 4px;
}

.pp-button-cancelar {
    background-color: #c0a8bd;
}

.pp-button-nao {
    background-color: #b8ccea;
    margin-right: 10px;
}

.pp-button-nao2 {
    background-color: #b8ccea;
    margin-right: 10px;
    margin-left: 10px;
}

.pp-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 492px;
    min-width: 880px;
}

.pp-background-container-dialog {
    background-color: #e2e6f3;
    box-shadow: 0px 0px 18px rgba(58, 79, 135, 0.3);
    border-radius: 8px;
}

.pp-background-top-dialog {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 20px 24px;
    height: 72px;
}

.pp-text-title-dialog {
    font-size: 26px;
    font-family: Inter;
    color: #2b304f;
    font-weight: 200;
}

.pp-content-mid-container-dialog {
    display: flex;
    justify-content: center;
    padding: 40px;
}

.pp-padding-typography-dialog {
    padding: 10px;
    font-family: Inter;
    font-size: 14px;
    text-align: start;
}

.pp-padding-typography-dialog-icon {
    padding: 10px;
    font-family: Inter;
    font-size: 14px;
    text-align: left;
}

/* PPNotification.css */

.ppnotification {
    font-family: "Inter", sans-serif;
}

/* Background e texto conforme severity */
.ppnotification-success {
    background-color: #a5d6a7;
    color: #2B304F;
    font-size: 14px;
    font-weight: bold;
}

.ppnotification-error {
    background-color: #D35555;
    color: #E2E6F3;
    font-size: 14px;
    font-weight: bold;
}

.ppnotification-info {
    background-color: #E2E6F3;
    color: #2B304F;
    font-size: 14px;
    font-weight: bold;
}

.ppnotification-warning {
    background-color: #ffb74d;
    color: #2B304F;
    font-size: 14px;
    font-weight: bold;
}

.ppnotification-default {
    background-color: #E2E6F3;
    color: #2B304F;
    font-size: 14px;
}

/* Link dentro da notifica��o */
.ppnotification-link {
    color: #1DA1F2;
    font-family: "Inter", sans-serif;
    text-decoration: underline;
}

/* Bot�o de fechar */
.ppnotification-close-button {
    font-family: "Inter", sans-serif;
}

/* �cone (se quiser estilizar) */
.ppnotification-icon {
    color: #2B304F;
    font-family: "Inter", sans-serif;
}

