#asmfd #feedbackFloatBtn {
  position: fixed ;
  bottom: 20px;
  right: 20px;
  background-color: #66FCF1;
  color: #0B0C10;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 24px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.2s ease, background-color 0.3s;
  padding:0px !important;
}

#asmfd #gohomebtn
{
    position: fixed;
    bottom: 20px;
    right: 80px;
    background-color: #66FCF1;
    color: #0B0C10;
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.2s ease, background-color 0.3s;
   
    text-align: center;
    text-decoration: none;
    padding-top: 5px;
}

#asmfd #feedbackFloatBtn:hover {
  transform: scale(1.1);
  background-color: #4eddd2;
}

#asmfd .feedback-card {
  max-width: 600px;
  margin: 40px auto;
  background-color: #BBF1F7;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
}

#asmfd .feedback-card h3 {
  margin-bottom: 10px;
  color: #0B0C10;
}

#asmfd .feedback-card textarea {
  width: 100%;
  height: 100px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  resize: none;
  font-family: inherit;
  font-size: 16px;
  margin-bottom: 15px;
}

#asmfd .feedback-card button {
  background-color: #66FCF1;
  color: #0B0C10;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#asmfd .feedback-card button:hover {
  background-color: #50dad1;
}

#feedbackMsg {
  color: green;
  display: none;
  margin-top: 10px;
  font-weight: 500;
}


#asmfd .tooltip {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

#asmfd .tooltip .tooltiptext {
  visibility: hidden;
  width: 110px;
  background-color: #0B0C10;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 6px;
  position: absolute;
  z-index: 1001;
  bottom: 60px;
  right: 0;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 12px;
}

#asmfd .tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
