.noti-container {
	position: fixed;
	top: 20px;
	right: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
	z-index: 9999;
  }

  .noti {
	width: 300px;
	background: white;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	font-size: 0.95rem;
	opacity: 0;
	transform: translateY(-10px);
	animation: slideFadeIn 0.3s ease forwards;
	transition: opacity 0.3s, transform 0.3s;
	border: 2px solid transparent;
  }

  .noti.exit {
	animation: fadeOut 0.3s ease forwards;
  }

  .noti:hover {
	background-color: #f7f7f7;
  }

  @keyframes slideFadeIn {
	from { opacity: 0; transform: translateY(-20px); }
	to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeOut {
	from { opacity: 1; transform: translateY(0); }
	to { opacity: 0; transform: translateY(-10px); }
  }

  .noti-header {
	display: flex;
	justify-content: space-between;
	color: #555;
	font-size: 0.8rem;
	margin-bottom: 5px;
  }

  .noti-ok .noti-type {
	color: #689F38;
  }
  .noti-ok {
	  border-color: #689F38;
	}
  .noti-error .noti-type {
	color: #D32F2F;
  }
  .noti-error {
	  border-color: #D32F2F;
	}
  .noti-warning .noti-type {
	color: #FFA000;
  }
  .noti-warning {
	  border-color: #FFA000;
	}

  .noti-icon {
	width: 18px;
	height: 18px;
	background: #222;
	border-radius: 4px;
	margin-right: 6px;
	display: inline-block;
  }

  .noti-app {
	display: flex;
	align-items: center;
	font-weight: bold;
  }

  /* Button Styling */
  #add-noti {
	position: fixed;
	bottom: 20px;
	right: 20px;
	padding: 12px 18px;
	font-size: 14px;
	background: #222;
	color: white;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }

  #add-noti:hover {
	background: #444;
  }