@keyframes slideInUp {
  from {
      transform: translateY(50px);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

@keyframes slideOutDown {
  from {
      transform: translateY(0);
      opacity: 1;
  }
  to {
      transform: translateY(50px);
      opacity: 0;
  }
}

.bok-notif-luar {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}

.bok-notif {
  display: flex;
  align-items: center;
  width: 320px;
  padding: 12px;
  background: white;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  border-left: 5px solid #3498db;
  animation: slideInUp 0.5s ease-in-out;
  font-family: Arial, sans-serif;
}

.bok-notif img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
}

.bok-notif-content {
  flex: 1;
}

.bok-notif-content p {
  margin: 0;
  font-size: 14px;
  color: #333;
  font-weight: bold;
}

.bok-notif-content small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #888;
}
