.hintContainer {
    position: absolute;
    background-color: #000000;
    border-radius: 5px;
    color: white;
    padding: 4px 3px 4px 12px; 
    letter-spacing: 10px;
    border: 1px solid #57f7ff;
    z-index: 1000;
    font-size: 18px;
}

/* Down arrow */
.hintContainer::after {
    content: "";
    position: absolute;
    bottom: -10px;          /* move below the box */
    left: 10px;             /* adjust horizontal position */
    border-width: 10px 10px 0 10px;
    border-style: solid;
    border-color: #000000ed transparent transparent transparent;
}

.hintContainer{
    display: none;
}

.toast {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  width: fit-content;
}

.toast.show {
  display: inline-block !important;
  opacity: 1;
}

.toast.fade-out {
  opacity: 0;
}

.hintArrow::after{
  border-color: #2dd1e2ed transparent transparent transparent !important;
}


.userIcoLabel{
  display: flex;
}
.miniImgClass{
  margin-left: 5px;
}