   #toast-container {
       right: 0px !important;
       display: flex;
       flex-direction: column;
       align-items: flex-end;
       gap: 10px;
   }

   /* ?? Toast Styles */
   .custom-toast {
       position: relative;
       opacity: 0;
       transform: translateX(100px);
       transition: all 0.5s ease-in-out;
       max-width: 350px;
       border-radius: 8px;
       padding: 12px 15px;
   }

   /* ?? Slide in smoothly */
   .custom-toast.show {
       opacity: 1;
       transform: translateX(0);
   }
/* Custom Toast message */

    .alert {
      position: fixed;
      top: 60px;
      right: -400px; /* Initially off-screen */
      z-index: 9999;
      min-width: 250px;
      max-width: fit-content;
      padding: 10px 20px;
      transition: right 0.5s ease-in-out;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }
    .toggle-message {
        cursor: pointer;
        margin-left: 10px;
        color: steelblue;
        font-size: 16px;
        transition: color 0.3s;
    }

    .toggle-message:hover {
        color: darkblue;
    }
    .show-message-icon {
      position: fixed;
      right: 10px; /* Ensures it's visible */
      z-index: 10000;
      cursor: pointer;
      font-size: 20px;
      display: none; /* Hidden initially */
      transition: color 0.3s;
      color: steelblue;
      /* transition: background 0.3s ease, opacity 0.3s ease; */
  }

  .show-message-icon:hover {
      color: darkblue; /* Darker green on hover */
  }
