#notification-container {
  z-index: 100;
  position: fixed;
  top: 10px; /* Tetap di bagian atas */
  left: 10px; /* Tetap di bagian kiri */
}

.notification {
  display: flex;
  align-items: center;
  background-color: #eeeeee;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 10px;
  max-width: 350px;
  position: relative;
  animation: slideIn 0.5s ease-in-out;
}

.notification img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 10px;
}

.notification-content {
  flex-grow: 1;
}

.notification-content p {
  margin: 0;
}

.notification-content .buyer-name {
  font-weight: bold;
}

.notification-content .product-name {
  color: #555;
  margin-top: 4px;
}

.notification-content .product-price {
  color: #11a152;
  margin-top: 2px;
  font-weight: bold;
}

.notification-close {
  position: absolute;
  top: 0px;
  right: 6px;
  margin-left: 2px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50px); /* Efek animasi dari atas */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
