/*=========================
    CUSTOM TOAST STYLES
==========================*/
#toast-container {
    position: fixed;
    top: 90px; /* Position below the main menu */
    right: 20px;
    z-index: 10001; /* Higher than other elements */
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .toast-notification {
    min-width: 280px;
    max-width: 350px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  }
  
  .toast-notification.show {
    opacity: 1;
    transform: translateX(0);
  }
  
  .toast-notification.hide {
    opacity: 0;
    transform: translateX(100%);
  }
  
  .toast-notification .toast-icon {
    font-size: 24px;
  }
  
  .toast-notification .toast-message {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
  }
  
  /* Toast Types */
  .toast-notification.success {
    background-color: #198754; /* Success Green */
    border-left: 5px solid #146c43;
  }
  
  .toast-notification.error {
    background-color: #dc3545; /* Error Red */
    border-left: 5px solid #b02a37;
  }
  
  .toast-notification.info {
    background-color: #0dcaf0; /* Info Cyan */
    border-left: 5px solid #0a9cb9;
  }