.ticketDetail .TicketDetailRightContainer__rightPanelDetail .ticket_duedate{

  	display: none

}

li[aria-label="comment"] {
    display: none !important;
}
/* Container for the floating widget */
#ace-floating-widget {
    position: fixed;
    bottom: 20px;       /* Distance from the bottom of the screen */
    right: 20px;        /* Distance from the right of the screen */
    z-index: 9999;      /* Keeps it on top of all other elements */
    width: 120px;       /* Adjust this to change the size of the robot */
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Slight pop-out effect on hover */
#ace-floating-widget:hover {
    transform: scale(1.08); 
}
#ace-floating-text{
margin-left: 30px;
  text-align: left;
}
/* Ensure the image scales neatly */
#ace-floating-widget img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.2)); /* Optional: adds a nice shadow */
}

/* Styling for the close button */
#ace-close-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 16px;
    line-height: 22px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    opacity: 0;         /* Hidden by default */
    transition: opacity 0.2s ease;
    z-index: 10000;
}

/* Show the close button when the widget is hovered */
#ace-floating-widget:hover #ace-close-btn {
    opacity: 1;
}
