/* =======right click message======== */
/* Disable text selection everywhere except inputs and textareas */
body *:not(input):not(textarea) {
  user-select: none !important;
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -khtml-user-select: none !important;
  -ms-user-select: none !important;
}

/* Toast message base styling */
#agean_toast_msg {
  visibility: hidden;              /* hidden by default */
  min-width: 250px;
  margin-left: -125px;             /* center horizontally */
  background-color: #333;          /* dark background */
  color: #fff;                     /* white text */
  text-align: center;
  border-radius: 4px;              /* slightly rounded corners */
  padding: 16px;
  position: fixed;
  z-index: 9999 !important;                   /* stay on top */
  left: 50%;
  bottom: 30px;
  font-size: 17px;
  font-family: 'Montserrat', sans-serif;
}

/* Toast visible state with animation */
#agean_toast_msg.toast-visible {
  visibility: visible;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}




/* Fade-in animation */
@-webkit-keyframes fadein {
  from { bottom: 0; opacity: 0; }
  to   { bottom: 30px; opacity: 1; }
}
@keyframes fadein {
  from { bottom: 0; opacity: 0; }
  to   { bottom: 30px; opacity: 1; }
}

/* Fade-out animation */
@-webkit-keyframes fadeout {
  from { bottom: 30px; opacity: 1; }
  to   { bottom: 0; opacity: 0; }
}
@keyframes fadeout {
  from { bottom: 30px; opacity: 1; }
  to   { bottom: 0; opacity: 0; }
}
