.ppdropdown .ppdropdown-container {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--text-default);
    letter-spacing: normal;
    line-height: normal;
    min-height: 28px;
    /* height: 28px; */
    cursor: pointer;
}

.ppdropdown > label {
    font-size: 0.75rem;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 4px;
}

/*.ppdropdown .ppdropdown__menu-list {
    max-height: 20vh;
}*/

.ppdropdown .ppdropdown__menu-list::-webkit-scrollbar {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 0.25rem;
    background-color: #eee;
    z-index: 99;
}

.ppdropdown .ppdropdown__menu-list::-webkit-scrollbar-thumb {
    background: #cccccf;
    border-radius: 0.25rem;
}

    .ppdropdown .ppdropdown__menu-list::-webkit-scrollbar-thumb:hover {
        background: #ddd;
    }

.ppdropdown .ppdropdown__menu-list::-webkit-scrollbar-track {
    border-radius: 0.25rem;
}




.ppdropdown .ppdropdown__control {
    min-height: 28px;
    /* height: 28px; */
    cursor: pointer;
}

.ppdropdown .ppdropdown__value-container {
    /* height: 26px; */
    padding: 0 4px;
    max-height: 75px;
    overflow-y: auto;
}
.ppdropdown .ppdropdown__value-container::-webkit-scrollbar {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 0.25rem;
    background-color: #eee;
    z-index: 99;
}
.ppdropdown .ppdropdown__value-container::-webkit-scrollbar-thumb {
    background: #cccccf;
    border-radius: 0.25rem;
}
.ppdropdown .ppdropdown__value-container::-webkit-scrollbar-thumb:hover {
    background: #ddd;
}

.ppdropdown .ppdropdown__value-container::-webkit-scrollbar-track {
border-radius: 0.25rem;
}


.ppdropdown .ppdropdown__option {
    padding: 4px 8px;
    cursor: pointer;
    color: var(--text-default);
    font-size: 13px;
}

.ppdropdown .ppdropdown__input {
    margin: 0px;
    padding: 0px;
}

.ppdropdown .ppdropdown__indicator-separator {
    display: none;
}

.ppdropdown .ppdropdown__indicator {
    padding: 4px;
}

/* .ppdropdown .ppdropdown__indicators {
    min-height: 26px;
} */


.ppdropdown .ppdropdown__control--is-disabled {
    background: #ebebeb !important;
}

/* Fix z-index para menu dropdown em modais */
.ppdropdown .ppdropdown__menu {
    z-index: 9999 !important;
}

/* Estilos para menu portal (renderizado no body) */
.ppdropdown__menu-portal {
    z-index: 9999 !important;
}

.ppdropdown__menu-portal .ppdropdown__menu {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: var(--text-default);
}

.ppdropdown__menu-portal .ppdropdown__option {
    padding: 4px 8px;
    cursor: pointer;
    color: var(--text-default);
    font-size: 13px;
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
}

.ppdropdown__menu-portal .ppdropdown__menu-list {
    font-family: "Ubuntu", sans-serif;
    font-size: 13px;
}

.ppdropdown__menu-portal .ppdropdown__menu-list::-webkit-scrollbar {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 0.25rem;
    background-color: #eee;
}

.ppdropdown__menu-portal .ppdropdown__menu-list::-webkit-scrollbar-thumb {
    background: #cccccf;
    border-radius: 0.25rem;
}

.ppdropdown__menu-portal .ppdropdown__menu-list::-webkit-scrollbar-thumb:hover {
    background: #ddd;
}

.ppdropdown__menu-portal .ppdropdown__menu-list::-webkit-scrollbar-track {
    border-radius: 0.25rem;
}
.ppdropdown-tools {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.ppdropdown-tools-title {
	font-weight: normal;
	font-size: 12px;
}

.ppdropdown-tools-button-container {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: 2px;
}

.ppdropdown-tools-buttons {
	display: flex;
	gap: 8px;
}

.ppdropdown-tools-button {
	background-color: var(--button-primary-default);
	border: none;
	color: white;
	padding: 2px 6px;
	font-size: 12px;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.ppdropdown-tools-button:hover {
	background-color: var(--text-link-hover);
	color: white;
}
.pp-input {
  width: fit-content;
  height: fit-content;
  width: 100%;
}

.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>.loading {
  font-size: 0.8rem;
  color: #aaa;
}

.pp-input>.suggestions,
.pp-input>.loading {
  position: fixed;
  z-index: 500;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 4px;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
  min-width: 200px;
  width: fit-content;
  max-width: 100%;
  margin-left: 3px;
  max-height: 86px;
  overflow-y: auto;
}

.pp-input>.suggestions>.suggestion,
.pp-input>.loading>.suggestion {
  cursor: pointer;
  padding: 2px;
  font-size: 0.8rem;
  border-radius: 2px;
}

.pp-input>.suggestions>.suggestion:hover,
.pp-input>.loading>.suggestion:hover {
  background-color: #ccc;
}

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

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

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

.pp-input>.suggestions::-webkit-scrollbar-track,
.pp-input>.loading::-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;
}

@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 {
  max-width: 100vw;
  min-width: 300px;
  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;
}

.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;
}
.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;
}

/* RevoGrid Pivot - Main container */

.pivot-revogrid-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    font-family: 'Ubuntu', sans-serif;
    font-size: 10px;
    color: #2E1956;
}

.pivot-revogrid-container.focused {
    border: none;
}

/* Toolbar (top-left icon strip) */

.revo-pivot-toolbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 2px 6px;
    gap: 4px;
    flex-shrink: 0;
}

.revo-pivot-toolbar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: transparent;
    color: #2E1956;
    cursor: pointer;
    transition: all 0.15s;
}

.revo-pivot-toolbar-btn:hover {
    background: #f0f3ff;
    border-color: #e0e0ec;
}

.revo-pivot-toolbar-btn.active {
    background: #f0f3ff;
    border-color: #6c5ce7;
    color: #6c5ce7;
}

/* Body (grid + optional config panel on the right) */

.revo-pivot-body {
    display: flex;
    flex: 1 1;
    min-height: 0;
    overflow: hidden;
    position: relative;
}

.revo-pivot-grid-wrapper {
    flex: 1 1;
    min-width: 0;
    overflow: hidden;
}

.revo-pivot-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999;
    font-size: 11px;
}

/* Config Panel (slides from right) */

.revo-cfg-panel {
    width: 310px;
    min-width: 310px;
    max-width: 310px;
    background: #fff;
    border-left: 1px solid #e8e8ef;
    box-shadow: -4px 0 16px rgba(46, 25, 86, 0.06);
    display: flex;
    flex-direction: column;
    font-size: 11px;
    color: #2E1956;
    font-family: 'Ubuntu', sans-serif;
    overflow: hidden;
}

/* Header */

.revo-cfg-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 12px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.revo-cfg-header-title {
    font-size: 12px;
    font-weight: 500;
    color: #2E1956;
}

.revo-cfg-header-actions {
    display: flex;
    gap: 6px;
}

.revo-cfg-header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    border-radius: 4px;
    padding: 3px;
    transition: all 0.12s;
}

.revo-cfg-header-btn:hover {
    background: #f0f3ff;
    color: #2E1956;
}

/* Scrollable body */

.revo-cfg-body {
    flex: 1 1;
    overflow-y: auto;
    padding: 8px 0;
}

/* Section (Linhas, Colunas, Valores, Filtros) */

.revo-cfg-section {
    border-bottom: 1px solid #f0f0f5;
}

.revo-cfg-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    color: #2E1956;
    font-size: 11px;
    transition: background 0.1s;
}

.revo-cfg-section-header:hover {
    background: #fafafe;
}

.revo-cfg-zone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 11px;
    color: #888;
    flex-shrink: 0;
}

.revo-cfg-section-title {
    flex: 1 1;
    font-weight: 500;
    font-size: 11px;
}

.revo-cfg-section-chevron {
    display: flex;
    align-items: center;
    color: #aaa;
    flex-shrink: 0;
}

.revo-cfg-section-body {
    padding: 4px 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 32px;
    transition: background 0.15s;
    border-radius: 4px;
}

.revo-cfg-section-body.revo-cfg-drag-over {
    background: #f0f3ff;
}

/* Field chip row */

.revo-cfg-field-row {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8f8fc;
    border: 1px solid #e8e8ef;
    border-radius: 8px;
    padding: 5px 8px;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
    transition: box-shadow 0.12s, border-color 0.12s;
}

.revo-cfg-field-row:active {
    cursor: grabbing;
    box-shadow: 0 2px 10px rgba(108, 92, 231, 0.15);
    border-color: #6c5ce7;
}

.revo-cfg-grip {
    color: #ccc;
    flex-shrink: 0;
}

.revo-cfg-type-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 4px;
    background: #eee;
    color: #666;
    flex-shrink: 0;
}

.revo-cfg-field-select {
    flex: 1 1;
    min-width: 0;
    border: none;
    background-color: transparent;
    font-size: 11px;
    color: #2E1956;
    font-family: inherit;
    cursor: pointer;
    padding: 2px 16px 2px 0;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2710%27 height=%276%27%3E%3Cpath d=%27M0 0l5 6 5-6z%27 fill=%27%23999%27/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 2px center;
}

.revo-cfg-field-select:focus {
    outline: none;
}

.revo-cfg-op-select {
    width: 80px;
    font-size: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    color: #2E1956;
    padding: 2px 4px;
    cursor: pointer;
    flex-shrink: 0;
    font-family: inherit;
}

.revo-cfg-op-select:focus {
    outline: none;
    border-color: #6c5ce7;
}

/* Field action buttons */

.revo-cfg-field-actions {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.revo-cfg-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 4px;
    background: transparent;
    color: #999;
    cursor: pointer;
    transition: all 0.1s;
    padding: 0;
}

.revo-cfg-action-btn:hover:not(:disabled) {
    background: #eee;
    color: #2E1956;
}

.revo-cfg-action-btn:disabled {
    opacity: 0.3;
    cursor: default;
}

.revo-cfg-remove-btn:hover:not(:disabled) {
    background: #fdecea;
    color: #DC291E;
}

/* + Adicionar button */

.revo-cfg-add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1.5px dashed #d0d0d6;
    border-radius: 8px;
    background: transparent;
    color: #888;
    font-size: 11px;
    font-family: inherit;
    padding: 7px 12px;
    cursor: pointer;
    transition: all 0.12s;
    width: 100%;
}

.revo-cfg-add-btn:hover {
    border-color: #6c5ce7;
    color: #6c5ce7;
    background: #fafaff;
}

/* Footer (Cancelar / Aplicar) */

.revo-cfg-footer {
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    border-top: 1px solid #eee;
    flex-shrink: 0;
}

.revo-cfg-btn-cancel {
    flex: 1 1;
    padding: 8px 0;
    border: 1px solid #d0d0d6;
    border-radius: 8px;
    background: #fff;
    color: #2E1956;
    font-size: 11px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.12s;
}

.revo-cfg-btn-cancel:hover {
    background: #f5f5fa;
    border-color: #bbb;
}

.revo-cfg-btn-apply {
    flex: 1 1;
    padding: 8px 0;
    border: none;
    border-radius: 8px;
    background: #2E1956;
    color: #fff;
    font-size: 11px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.12s;
}

.revo-cfg-btn-apply:hover {
    background: #3d2570;
}

/* RevoGrid theme overrides (LiveCloud styling) */

.pivot-revogrid-container revo-grid {
    font-family: 'Ubuntu', sans-serif;
    font-size: 10px;
    color: #2E1956;
    --revo-font-size: 10px;
    --revo-header-bg: #f5f5fa;
    --revo-header-color: #2E1956;
    --revo-header-font-weight: 600;
    --revo-border-color: #e8e8ef;
    --revo-row-odd-bg: #fafafe;
    --revo-row-even-bg: #ffffff;
    --revo-cell-focus-border: #6c5ce7;
    --revo-cell-color: #2E1956;
}

.pivot-revogrid-container revogr-data,
.pivot-revogrid-container revogr-header,
.pivot-revogrid-container .rgCell,
.pivot-revogrid-container .rgHeaderCell {
    font-size: 10px !important;
    color: #2E1956 !important;
}

/* Number cells - right aligned */

.pivot-revogrid-container .revo-cell-number {
    text-align: right !important;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

/* Force ellipsis on all cells and headers — never wrap text */

.pivot-revogrid-container revogr-data [data-rgcol],
.pivot-revogrid-container revogr-header .rgHeaderCell,
.pivot-revogrid-container .rgCell,
.pivot-revogrid-container .rgHeaderCell .header-content,
.pivot-revogrid-container .rgRow .rgCell {
    overflow: hidden !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
}

/* Grouping row headers — also ellipsis */
.pivot-revogrid-container .rgRow[grouping],
.pivot-revogrid-container .groupingRow,
.pivot-revogrid-container [data-rgrow] .grouping-content {
    overflow: hidden !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
}

/* Total row styling */

.pivot-revogrid-container .rgRow:last-child {
    font-weight: 600;
    background-color: #f0f3ff !important;
    color: #2E1956;
}

/* Subtotal row styling (per-group totals) */

.pivot-revogrid-container .revo-subtotal-cell {
    font-weight: 600 !important;
    background-color: #f8f7ff !important;
    color: #2E1956 !important;
    font-style: italic;
}

/* Grand total row styling */

.pivot-revogrid-container .revo-total-cell {
    font-weight: 700 !important;
    background-color: #f0f3ff !important;
    color: #2E1956 !important;
}

/* Scrollbars */

.pivot-revogrid-container ::-webkit-scrollbar,
.revo-cfg-body::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.pivot-revogrid-container ::-webkit-scrollbar-track,
.revo-cfg-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.pivot-revogrid-container ::-webkit-scrollbar-thumb,
.revo-cfg-body::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.pivot-revogrid-container ::-webkit-scrollbar-thumb:hover,
.revo-cfg-body::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* ═══════════════════════════════════════════════════════
   PivotConfigPanel – content rendered inside LCDashboard rightSidePanel
   ═══════════════════════════════════════════════════════ */

.pcfg-content {
    display: flex;
    flex-direction: column;
    /* Force a real height so flex children actually divide space.
       The panel sits inside rightSidePanel which has its own header (~48px)
       plus the top Layout bar (~56px). Use calc to fill the rest. */
    height: calc(100vh - 200px);
    max-height: calc(100vh - 200px);
    font-family: 'Ubuntu', sans-serif;
    font-size: 11px;
    color: #2E1956;
    overflow: hidden;
}

/* Scrollable area for all sections (Linhas, Colunas, Valores, Filtros) */
.pcfg-scrollable {
    flex: 1 1;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
}

.pcfg-scrollable::-webkit-scrollbar {
    width: 5px;
}

.pcfg-scrollable::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

/* ── Sections ── */
.pcfg-section {
    border-bottom: 1px solid #f0f0f0;
}

.pcfg-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 4px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 11px;
    font-weight: 400;
    color: #2E1956;
    transition: background 0.12s;
    font-family: inherit;
}

.pcfg-section-header:hover {
    background: #f5f5fa;
}

.pcfg-section-icon {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.pcfg-section-title {
    flex: 1 1;
    text-align: left;
    font-weight: 500;
}

.pcfg-section-count {
    color: #999;
    font-size: 10px;
    font-weight: 400;
}

.pcfg-chevron {
    transition: transform 0.18s ease;
    color: #999;
    font-size: 12px;
}

.pcfg-chevron.open {
    transform: rotate(90deg);
}

.pcfg-section-body {
    padding: 4px 4px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* ── Visualization grid ── */
.pcfg-vis-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 4px 0;
    align-items: center;
}

.pcfg-content .pcfg-vis-grid .pcfg-vis-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
    flex-basis: 28px;
    border: 1.5px solid transparent;
    border-radius: 5px;
    background: #f5f5fa;
    color: #666;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
    padding: 0 !important;
    margin: 0;
    box-sizing: border-box;
    flex-shrink: 0;
    flex-grow: 0;
    line-height: 1;
    overflow: hidden;
}

.pcfg-content .pcfg-vis-grid .pcfg-vis-btn svg {
    width: 14px !important;
    height: 14px !important;
    flex-shrink: 0;
}

.pcfg-content .pcfg-vis-grid .pcfg-vis-btn:hover {
    border-color: #d0d0e0;
    color: #2E1956;
}

.pcfg-content .pcfg-vis-grid .pcfg-vis-btn.active {
    border-color: #6c5ce7;
    background: #f0eeff;
    color: #6c5ce7;
}

.pcfg-vis-label {
    display: block;
    text-align: center;
    font-size: 10px;
    color: #666;
    padding-top: 4px;
}

/* ── Field rows ── */
.pcfg-field-row {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    border: 1px solid #e8e8ef;
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.12s, opacity 0.15s, box-shadow 0.15s;
}

.pcfg-field-row:hover {
    border-color: #d0d0e0;
}

/* Drag-and-drop: row being dragged */
.pcfg-field-row[draggable="true"] {
    cursor: grab;
}

.pcfg-field-row[draggable="true"]:active {
    cursor: grabbing;
    opacity: 0.5;
}

/* Drag-and-drop: drop target highlight */
.pcfg-field-row.drag-over {
    border-color: #6c5ce7;
    box-shadow: 0 -2px 0 0 #6c5ce7;
}

/* Drop zone (section body) highlight when dragging over empty area */
.pcfg-drop-zone {
    min-height: 32px;
    transition: background 0.15s;
}

.pcfg-drop-zone:empty {
    border: 2px dashed #d0d0e0;
    border-radius: 8px;
}

/* Drag handle */
.pcfg-drag-handle {
    display: flex;
    align-items: center;
    color: #bbb;
    cursor: grab;
    flex-shrink: 0;
}

.pcfg-drag-handle:hover {
    color: #888;
}

/* Type badge */
.pcfg-type-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.pcfg-type-badge.txt {
    background: #f0f3ff;
    color: #6c5ce7;
    font-style: italic;
}

.pcfg-type-badge.num {
    background: #eef9f0;
    color: #27ae60;
}

/* Select dropdowns */
.pcfg-select {
    flex: 1 1;
    min-width: 0;
    height: 30px;
    padding: 0 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: #2E1956;
    font-size: 10px;
    font-family: inherit;
    cursor: pointer;
    appearance: auto;
}

.pcfg-select:focus {
    outline: none;
    border-color: #6c5ce7;
}

.pcfg-select-op {
    max-width: 100px;
    flex: 0 0 auto;
    height: 30px;
    padding: 0 6px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: #2E1956;
    font-size: 11px;
    font-family: inherit;
    cursor: pointer;
    appearance: auto;
}

.pcfg-select-op:focus {
    outline: none;
    border-color: #6c5ce7;
}

/* Icon buttons */
.pcfg-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 4px;
    background: transparent;
    color: #888;
    cursor: pointer;
    transition: all 0.12s;
    flex-shrink: 0;
    padding: 0;
}

.pcfg-icon-btn:hover {
    background: #f0f3ff;
    color: #6c5ce7;
}

.pcfg-icon-btn.danger:hover {
    background: #fdecea;
    color: #DC291E;
}

.pcfg-icon-btn:disabled {
    opacity: 0.3;
    cursor: default;
}

.pcfg-icon-btn:disabled:hover {
    background: transparent;
    color: #888;
}

/* Add button */
.pcfg-add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 7px 0;
    border: 1.5px dashed #d0d0e0;
    border-radius: 8px;
    background: transparent;
    color: #888;
    font-size: 10px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.15s;
}

.pcfg-add-btn:hover {
    border-color: #6c5ce7;
    color: #6c5ce7;
    background: #f8f7ff;
}

.pcfg-add-btn:disabled {
    opacity: 0.4;
    cursor: default;
}

.pcfg-add-btn:disabled:hover {
    border-color: #d0d0e0;
    color: #888;
    background: transparent;
}

/* ── Top N section ── */
.pcfg-topn-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 2px 0;
}

.pcfg-topn-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #2E1956;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    padding: 2px 0;
}

.pcfg-topn-toggle input[type="checkbox"] {
    width: 14px;
    height: 14px;
    accent-color: #6c5ce7;
    cursor: pointer;
    flex-shrink: 0;
}

.pcfg-topn-hint {
    font-size: 10px;
    color: #999;
    font-style: italic;
    padding-left: 2px;
}

.pcfg-topn-config {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 2px 0 0 0;
}

.pcfg-topn-field {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pcfg-topn-label {
    font-size: 10px;
    font-weight: 500;
    color: #888;
}

.pcfg-topn-field .pcfg-select {
    width: 100%;
    flex: initial;
}

.pcfg-topn-input {
    width: 100%;
    padding: 4px 8px;
    font-size: 10px;
    height: 30px;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #2E1956;
    background: #fff;
    outline: none;
    font-family: 'Ubuntu', sans-serif;
    box-sizing: border-box;
}

.pcfg-topn-input:focus {
    border-color: #5C40B0;
    box-shadow: 0 0 0 2px rgba(92, 64, 176, 0.12);
}

.pcfg-topn-input::-webkit-inner-spin-button,
.pcfg-topn-input::-webkit-outer-spin-button {
    opacity: 1;
}

/* ── Footer (fixed at bottom, never scrolls) ── */
.pcfg-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 4px 8px;
    border-top: 1px solid #e8e8ef;
    flex: 0 0 auto;
    background: #fafafa;
    margin-top: auto;
}

.pcfg-footer-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pcfg-btn {
    padding: 8px 28px;
    border-radius: 8px;
    font-size: 11px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
}

.pcfg-btn.cancel {
    background: #fff;
    border: 1px solid #ddd;
    color: #666;
}

.pcfg-btn.cancel:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.pcfg-btn.apply {
    background: #2E1956;
    border: 1px solid #2E1956;
    color: #fff;
}

.pcfg-btn.apply:hover {
    background: #3d2470;
    border-color: #3d2470;
}

/* ── Filter blocks ── */
.pcfg-filter-block {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pcfg-filter-summary {
    font-size: 11px;
    color: #888;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 40px;
    text-align: center;
}

.pcfg-filter-values {
    margin: 0 0 4px;
    padding: 6px 8px 8px;
    background: #fafafd;
    border: 1px solid #e8e8ef;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.pcfg-filter-toolbar {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.pcfg-filter-search-wrap {
    display: flex;
    align-items: center;
    flex: 1 1;
    min-width: 0;
    height: 28px;
    padding: 0 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    gap: 4px;
}

.pcfg-filter-search-icon {
    color: #aaa;
    flex-shrink: 0;
}

.pcfg-filter-search {
    border: none;
    outline: none;
    background: transparent;
    font-size: 10px;
    font-family: inherit;
    color: #2E1956;
    width: 100%;
    min-width: 0;
}

.pcfg-filter-search::placeholder {
    color: #bbb;
}

.pcfg-filter-toggle-btn {
    padding: 2px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    color: #666;
    font-size: 11px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.12s;
    white-space: nowrap;
    flex-shrink: 0;
}

.pcfg-filter-toggle-btn:hover {
    border-color: #6c5ce7;
    color: #6c5ce7;
    background: #f8f7ff;
}

.pcfg-filter-checklist {
    max-height: 180px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pcfg-filter-checklist::-webkit-scrollbar {
    width: 4px;
}

.pcfg-filter-checklist::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}

.pcfg-filter-check-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 4px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.1s;
    font-size: 10px;
    color: #2E1956;
}

.pcfg-filter-check-item:hover {
    background: #f0f3ff;
}

.pcfg-filter-check-item input[type="checkbox"] {
    width: 14px;
    height: 14px;
    accent-color: #6c5ce7;
    cursor: pointer;
    flex-shrink: 0;
    margin: 0;
}

.pcfg-filter-check-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.pcfg-filter-empty {
    font-size: 11px;
    color: #aaa;
    text-align: center;
    padding: 8px 0;
    font-style: italic;
}

/* ------------------------------------------------------------------ */
/*  Minhas Visões                                                      */
/* ------------------------------------------------------------------ */

.pcfg-view-reset {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    padding: 6px 8px;
    border: 1px dashed #d0d0d0;
    border-radius: 6px;
    background: #fafafa;
    color: #2E1956;
    font-size: 10px;
    cursor: pointer;
    transition: background 0.15s;
    margin-bottom: 6px;
}

.pcfg-view-reset:hover {
    background: #f0f3ff;
    border-color: #6c5ce7;
}

.pcfg-views-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 6px;
}

.pcfg-view-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 6px 8px;
    background: #f5f5f5;
    border-radius: 6px;
    transition: background 0.15s;
}

.pcfg-view-item:hover {
    background: #eef0ff;
}

.pcfg-view-label {
    cursor: pointer;
    font-size: 10px;
    color: #2E1956;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1 1;
    min-width: 0;
}

.pcfg-view-label:hover {
    color: #6c5ce7;
    text-decoration: underline;
}

.pcfg-view-save-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.pcfg-view-input {
    flex: 1 1;
    min-width: 0;
    padding: 5px 8px;
    font-size: 10px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    outline: none;
    font-family: inherit;
    color: #2E1956;
    transition: border-color 0.15s;
}

.pcfg-view-input:focus {
    border-color: #6c5ce7;
}

.pcfg-icon-btn.save {
    color: #6c5ce7;
}

.pcfg-icon-btn.save:hover:not(:disabled) {
    background: #eef0ff;
}

/* ---- Delete confirmation overlay ---- */

.pcfg-confirm-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    border-radius: 8px;
}

.pcfg-confirm-box {
    background: #fff;
    border-radius: 10px;
    padding: 20px 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    max-width: 280px;
    text-align: center;
}

.pcfg-confirm-box p {
    font-size: 11px;
    color: #2E1956;
    margin: 0 0 4px;
}

.pcfg-confirm-sub {
    font-size: 10px;
    color: #888;
    display: block;
    margin-bottom: 14px;
}

.pcfg-confirm-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.pcfg-btn.danger {
    background: #DC291E;
    color: #fff;
    border-color: #DC291E;
}

.pcfg-btn.danger:hover {
    background: #b71c1c;
    border-color: #b71c1c;
}

/* ── Numeric filter controls ── */
.pcfg-filter-numeric-row {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
}

.pcfg-filter-numeric-row .pcfg-select-op {
    flex: 0 0 auto;
    min-width: 130px;
}

.pcfg-filter-numeric-input {
    flex: 1 1;
    min-width: 0;
    padding: 4px 8px;
    font-size: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #2E1956;
    background: #fff;
    outline: none;
    font-family: 'Ubuntu', sans-serif;
}

.pcfg-filter-numeric-input:focus {
    border-color: #5C40B0;
    box-shadow: 0 0 0 2px rgba(92, 64, 176, 0.12);
}

.pcfg-filter-numeric-input::-webkit-inner-spin-button,
.pcfg-filter-numeric-input::-webkit-outer-spin-button {
    opacity: 1;
}

.pcfg-filter-between-label {
    font-size: 10px;
    color: #888;
    min-width: 130px;
    text-align: center;
}

/* ─── Expand / Collapse all groups ─── */

.pcfg-group-expand-actions {
    display: flex;
    flex-direction: row;
    gap: 4px;
    padding: 2px 8px 4px;
}

.pcfg-group-expand-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border: 1px solid #e0e0ec;
    border-radius: 4px;
    background: transparent;
    color: #666;
    font-size: 10px;
    font-family: 'Ubuntu', sans-serif;
    cursor: pointer;
    transition: all 0.12s;
    white-space: nowrap;
    flex: 0 1 auto;
}

.pcfg-group-expand-btn:hover {
    background: #f0f3ff;
    border-color: #c0c0d4;
    color: #2E1956;
}

.pcfg-group-expand-btn.active {
    background: #f0f3ff;
    border-color: #6c5ce7;
    color: #6c5ce7;
}
/* ──────────────────────────────────────────────────────
   PivotTableWithPanel — layout do wrapper grid + panel
   ────────────────────────────────────────────────────── */

.pvt-with-panel {
    display: flex;
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.pvt-with-panel__grid {
    flex: 1 1;
    min-width: 0;
    height: 100%;
    overflow: auto;
}

/* Toggle button */
.pvt-with-panel__toggle {
    position: absolute;
    top: 6px;
    z-index: 10;
    cursor: pointer;
    background-color: #fff;
    background-color: var(--background-default, #fff);
    border: 1px solid #ddd;
    border: 1px solid var(--border-default, #ddd);
    border-radius: 6px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    color: var(--icon-default, #666);
    transition: right 0.2s ease, background-color 0.15s ease, color 0.15s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.pvt-with-panel__toggle:hover {
    background-color: #e3f2fd;
    background-color: var(--color-primary-light, #e3f2fd);
    color: #1976d2;
    color: var(--color-primary, #1976d2);
    border-color: #1976d2;
    border-color: var(--color-primary, #1976d2);
}

.pvt-with-panel__toggle--active {
    background-color: #e3f2fd;
    background-color: var(--color-primary-light, #e3f2fd);
    color: #1976d2;
    color: var(--color-primary, #1976d2);
    border-color: #1976d2;
    border-color: var(--color-primary, #1976d2);
}

/* Config panel container */
.pvt-with-panel__panel {
    flex-shrink: 0;
    border-left: 1px solid #e0e0ec;
    border-left: 1px solid var(--border-default, #e0e0ec);
    overflow-y: auto;
    height: 100%;
    background: #fff;
    background: var(--background-default, #fff);
}

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

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

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

/* suggestions dropdown */
.pp-text-field__sugestions {
    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-text-field__sugestions .loading {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 5px;
        font-size: 12px;
    }

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

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

        .pp-text-field__sugestions .sugestion: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-text-field__item {
    position: relative;
}

    .pp-text-field__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: 200px;
    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;
}

.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;    
}

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

.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: #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);*/
}

.right-sidepanel.focused .message-paper.assistant {
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #E2E6F3;
    border-radius: 8px 8px 8px 0px;
    max-width: calc(70vw - 90px);
    overflow-x: auto;
    /*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;
}

.assistant-name {
    font-weight: 400;
    color: var(--text-light);
    font-family: 'Ubuntu' !important;
    font-size: 0.75rem !important;
}

.message-timestamp {
    color: var(--text-light);
    font-family: 'Ubuntu' !important;
    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;
}

.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;
}

.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: contents;
}

.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 */
.message-paper.assistant .message-content table {
    width: 100%;
    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 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: nowrap;
}

.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;
}

/* Container para scroll horizontal em tabelas grandes */
.message-paper.assistant .message-content > div {
    overflow-x: auto;
}
/* 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);
}
.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: stretch;
    flex-direction: column;
    margin-top: 20px;
    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);
    /* 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;
}

.cms-suggestion-card.MuiCard-root {
    font-size: 12px;
    font-family: inherit;
    font-weight: 300;
    line-height: 1.4;
    cursor: pointer;
    margin: 0;
    width: 100%;
    color: var(--text-light);
    overflow-y: auto;
    min-height: 60px;
    max-height: 120px;
    background-color: transparent;
    border: 1px solid var(--background-light);
    border-radius: 8px;
    box-shadow: none;
    display: flex;
    align-items: center;
    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 {
    border: 1px solid var(--color-secondary-lime);
    background-color: #fff;
    box-shadow: 0 4px 16px rgba(71, 31, 204, 0.18);
}

.right-sidepanel.focused .cms-suggestion-card.MuiCard-root {
    justify-content: center;
}

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

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

.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;
}

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

.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: #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);*/
}

.right-sidepanel.focused .message-paper.assistant {
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #E2E6F3;
    border-radius: 8px 8px 8px 0px;
    max-width: calc(100% - 40px);
    overflow-x: auto;
    /*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;
}

.assistant-name {
    font-weight: 400;
    color: var(--text-light);
    font-family: 'Ubuntu' !important;
    font-size: 0.75rem !important;
}

.message-timestamp {
    color: var(--text-light);
    font-family: 'Ubuntu' !important;
    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;
}

.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;
}

.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: contents;
}

.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 */
.message-paper.assistant .message-content table {
    width: 100%;
    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 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: nowrap;
}

.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;
}

/* Container para scroll horizontal em tabelas grandes */
.message-paper.assistant .message-content>div {
    overflow-x: auto;
}
/* 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 ===== */

    .pp-textfield__suggestions {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        z-index: 1000;
        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: auto;
        animation: fadeIn 0.15s ease-out;
    }

/* 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;
}

/* TagsMegaCard - Layout FinOps Framework */

.tags-mega-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: "Ubuntu", sans-serif;
    background-color: #fff;
}

.tags-mega-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 8px;
    padding: 4px 8px;
}

/* ===== Linha Superior: Gauge + KPIs ===== */
.tags-top-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    flex-shrink: 0;
}

/* Gauge de Conformidade */
.tags-gauge-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    min-width: 100px;
}

.tags-gauge-label {
    font-size: 10px;
    font-weight: 500;
    color: #8b90a3;
    text-align: center;
    margin-top: -10px;
}

.tags-delta {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 10px;
    font-weight: 500;
    border-radius: 8px;
    padding: 1px 6px;
    margin-top: 2px;
}

.tags-delta.positive {
    color: #34C38F;
    background-color: rgba(52, 195, 143, 0.1);
}

.tags-delta.negative {
    color: #F46A6A;
    background-color: rgba(244, 106, 106, 0.1);
}

/* KPIs Verticais */
.tags-kpis-column {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1 1;
    min-width: 0;
    padding-top: 2px;
}

/* Emblema de Maturidade */
.tags-maturity-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    background-color: #fafbfc;
    cursor: help;
}

.tags-maturity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.tags-maturity-label {
    font-size: 11px;
    font-weight: 600;
    color: #2B304F;
}

.tags-maturity-level {
    font-size: 9px;
    font-weight: 400;
    color: #8b90a3;
    margin-left: auto;
}

/* Mini KPIs */
.tags-kpi-mini {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: nowrap;
    line-height: 1.2;
}

.tags-kpi-mini-label {
    font-size: 10px;
    font-weight: 400;
    color: #8b90a3;
    white-space: nowrap;
    min-width: 70px;
}

.tags-kpi-mini-value {
    font-size: 13px;
    font-weight: 600;
    color: #2B304F;
    white-space: nowrap;
}

.tags-kpi-mini-sub {
    font-size: 10px;
    font-weight: 400;
    color: #8b90a3;
    white-space: nowrap;
}

.tags-kpi-danger {
    color: #F46A6A !important;
}

/* ===== Linha Inferior: Tags Faltantes ===== */
.tags-bottom-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid #f0f2f8;
    padding-top: 6px;
    flex-shrink: 0;
}

.tags-section-title {
    font-size: 10px;
    font-weight: 500;
    color: #5a6c7d;
    line-height: 1;
}

.tags-impact-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.tags-impact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 0;
}

.tags-impact-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.tags-impact-name {
    font-size: 11px;
    font-weight: 500;
    color: #2B304F;
    flex: 1 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.tags-impact-count {
    font-size: 10px;
    color: #8b90a3;
    white-space: nowrap;
    flex-shrink: 0;
}

.tags-impact-cost {
    font-size: 10px;
    font-weight: 600;
    color: #2B304F;
    white-space: nowrap;
    flex-shrink: 0;
    text-align: right;
    min-width: 70px;
}

.tags-empty-msg {
    font-size: 10px;
    color: #8b90a3;
    text-align: center;
    padding: 8px;
}

/* ===== Responsivo ===== */
@media screen and (max-width: 1400px) {
    .tags-kpi-mini-value {
        font-size: 12px;
    }

    .tags-maturity-label {
        font-size: 10px;
    }

    .tags-impact-cost {
        min-width: 60px;
    }
}

@media screen and (min-width: 1920px) {
    .tags-kpi-mini-value {
        font-size: 14px;
    }

    .tags-maturity-label {
        font-size: 12px;
    }

    .tags-impact-name {
        font-size: 12px;
    }

    .tags-impact-cost {
        font-size: 11px;
    }
}

/* Telas com pouca altura - compactar */
@media screen and (max-height: 800px) {
    .tags-top-row {
        gap: 8px;
    }

    .tags-kpis-column {
        gap: 3px;
    }

    .tags-maturity-badge {
        padding: 2px 6px;
    }

    .tags-bottom-row {
        padding-top: 4px;
    }

    .tags-impact-item {
        padding: 2px 0;
    }
}

/* ======================================================
   Tags Compliance Drilldown V2 — LCDashboard Pattern
   ====================================================== */

/* ---- Card filter clickable ---- */
.card-filter-clickable {
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease;
}

.card-filter-clickable:hover {
    transform: scale(1.02);
}

/* ===== Card selection states ===== */
.tags-drilldown-card-active {
    opacity: 1;
    transform: scale(1.02);
    box-shadow: 4px 4px 18px 0px rgba(58, 79, 135, 0.25);
    transition: all 0.3s ease;
}

.tags-drilldown-card-active .card-filter-clickable {
    background: rgba(46, 25, 86, 0.08);
}

.tags-drilldown-card-active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: #fff;
    box-shadow: 2px 2px 4px rgba(58, 79, 135, 0.15);
    z-index: 1;
}

.tags-drilldown-card-fade {
    opacity: 0.35;
    transition: all 0.3s ease;
}

.tags-drilldown-card-fade:hover {
    opacity: 0.6;
}

.tags-drilldown-card-neutral {
    opacity: 1;
    transition: all 0.3s ease;
}

.tags-drilldown-card-neutral:hover {
    box-shadow: 4px 4px 18px 0px rgba(58, 79, 135, 0.15);
}

/* ===== Table cell styles ===== */
.tags-drilldown-tag-cell {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.tags-drilldown-tag-cell svg {
    flex-shrink: 0;
    color: #471FCC;
    color: var(--color-primary-purple, #471FCC);
}

/* Level badges */
.tags-drilldown-level {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 500;
}

.tags-drilldown-level-mandatory {
    background: rgba(244, 106, 106, 0.15);
    color: #F46A6A;
}

.tags-drilldown-level-recommended {
    background: rgba(91, 147, 211, 0.15);
    color: #5B93D3;
}

.tags-drilldown-level-optional {
    background: rgba(52, 195, 143, 0.15);
    color: #34C38F;
}

/* Priority badges */
.tags-drilldown-priority {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 500;
}

.tags-drilldown-priority-alta {
    background: rgba(244, 106, 106, 0.15);
    color: #F46A6A;
}

.tags-drilldown-priority-media {
    background: rgba(224, 120, 23, 0.15);
    color: #E07817;
}

.tags-drilldown-priority-baixa {
    background: rgba(52, 195, 143, 0.15);
    color: #34C38F;
}

/* Coverage indicator */
.tags-drilldown-coverage {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 500;
    justify-content: center;
}

.tags-drilldown-coverage-good {
    color: #34C38F;
    color: var(--color-secondary-lime, #34C38F);
}

.tags-drilldown-coverage-warn {
    color: #E07817;
}

.tags-drilldown-coverage-bad {
    color: #F46A6A;
    color: var(--status-red, #F46A6A);
}

