.icon-circle {
  width: 24px; /* Circle width */
  height: 24px; /* Circle height */
  border-radius: 50%; /* Make it a circle */
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle-red400 {
  background-color: #FF4848;
}

.icon-circle-red500 {
  background-color: #F12525;
}

.icon-circle-orange400 {
  background-color: #FA7043;
}

.icon-circle-yellow400 {
  background-color: #FFC60A;
}

.icon-circle-green300 {
  background-color: #81E2BF;
}

.icon-circle-green400 {
  background-color: #57D9A9;
}

.icon-circle-blue400 {
  background-color: #699CFF;
}

.icon-circle-blue600 {
  background-color: #3C76E6;
}

.icon-circle-neutral200 {
  background-color: #D8D8D8;
}

.icon-circle-neutral400 {
  background-color: #6B6C6C;
}

.red500 {
  color: #F12525;
}

.yellow300 {
  color: #FFD23C;
}

.green400 {
  color: #57D9A9;
}

.white {
  color: white;
}

.neutral200 {
  color: #D8D8D8;
}

.neutral300 {
  color: #979898;
}

.neutral500 {
  color: #5D5D5D;
}

.neutral600 {
  color: #434343;
}


/* Status icons which used in chart's legends*/
.status-icon-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-right: 4px;
  font-size: 16px; /* Set icon size */
}

/* Status icons which used in chart's legends*/
.stats-chart-legend-text:hover .status-icon-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px; /* Less than icon width */
  height: 22px; /* Less than icon height */
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: 0px 2px 6px 0px #3A3A3A66;
}

.stats-chart-legend-text-disregarded:hover .status-icon-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px; /* Less than icon width */
  height: 14px; /* Less than icon height */
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: 0px 2px 6px 0px #3A3A3A66;
}

.status-icon-container-disregard {
  font-size: 10px !important; /* Set icon size */
}

/* Status icons which used in chart's legends*/
.status-icon-red {
  color: #FA7043; /* Red */
  font-size: 16px; /* Set icon size */
}

/* Status icons which used in chart's legends*/
.status-icon-yellow {
  color: #FFC60A; /* Yellow */
  font-size: 16px; /* Set icon size */
}

/* Status icons which used in chart's legends*/
.status-icon-green {
  color: #57D9A9; /* Green */
  font-size: 16px; /* Set icon size */
}

.mirror-icon {
  transform: scaleX(-1);
}

/* For status icons in device list pages */
.device-list-status-icon {
  font-size: 16px;
}
