/* styles.css */
.tooltip {
  border: 1px solid #4169e1; /* Blue border */
  background-color: transparent; /* Light blue tint with increased transparency */
  border-radius: 4px;
  padding: 10px;
  font-family: 'Lato', sans-serif; /* Updated font */
  font-size: 12px;
  font-weight: normal; /* Normal text */
  position: relative;
  max-width: 200px;
}

.tooltip-header {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.tooltip-dot {
  width: 8px;
  height: 8px;
  background-color: #4169e1; /* Example color */
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}

.tooltip-title {
  font-family: 'Lato', sans-serif;
}

.tooltip-content {
  color: #333; /* Slightly darker for better readability */
  font-family: 'Lato', sans-serif;
}

@font-face {
  font-family: 'Microsoft Advertising MDL2 Assets';
  src: url(/static/media/MsAdsMDL2.9ee9040c.ttf) format('truetype');
}

html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  height: inherit;
  font-size: 16px;
}

.ms-Layer .ms-Panel {
  margin-top: 48px;
}

#root {
  height: inherit;
}
#xpay-cpc-onboarding-frame-id {
  width: 100%;
}

/* Apex import will create a container div to handle the CMUI help experience, it's handled while application
load and not visible in UI but creating extra vertical overflows, below styling as a wrokaround to address this issue */
body > #announce-suggestions {
  bottom: 0;
}

/* Customizes the default scrollbar of the Operating System */
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
*::-webkit-scrollbar-thumb {
  background-color: #e1dfdd;
  border-radius: 8px;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: #d2d0ce;
}


/*# sourceMappingURL=main.47dd4d60.chunk.css.map*/