/* Shared Styles for Notification */
.notification {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    width: 320px;
    padding: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    border-radius: 8px;
    box-shadow: 0px 0px 5px -3px #111;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s ease;
    position: fixed;
    top: 90%; /* Set position at the top */
    left: 100%;
    transform: translateX(0%) ;
    z-index: 9999; /* Ensure it's above other content */
  }
  
  /* Notification Icons */
  .notification__icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }
  
  .notification__icon path {
    fill: #393A37;
  }
  
  /* Notification Title */
  .notification__title {
    font-weight: 500;
    font-size: 14px;
    color: #393A37;
  }
  
  /* Close Button */
  .notification__close {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-left: auto;
  }
  
  .notification__close path {
    fill: #393A37;
  }
  
  /* Specific Styles for Success, Warning, and Alert */
  .success {
    background: #84D65A;
  }
  
  .warning {
    background: #FF9800;
  }
  
  .alert {
    background: #f44336;
  }
  
  /* Show Animation */
  .notification.show {
    opacity: 1;
    transform: translateX(-120%) 
  }