#notification-container {
  z-index: 1000;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 90px;
  right: 10px;
  left: 10px;
  z-index: 1000;
}

.notification {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 48px;
  padding: 16px;
  margin-bottom: 10px !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  animation: slide-down 0.3s ease-out;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 1000px; /* Adjusted for 1080px width */
  display: flex;
  align-items: flex-start;
  font-family: "SF Display";
  font-size: 32px;
}

.notification-icon {
  width: 72px;
  height: 72px;
  margin-right: 20px;
  margin-top: 20px;
  border-radius: 12px;
  background-size: cover;
  flex-shrink: 0;
  /* border: 1px solid #000; */
}

.notification-content-wrapper {
  flex-grow: 1;
}

.notification-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-name {
  color: #000;
  font-weight: 600;
  font-size: 32px;
  font-family: "SF Display";
}

.notification-time {
  color: #666;
  /* font-size: 20px; */
  font-size: 32px;
  font-weight: 200;
  margin-right: 20px;
  font-family: "SF Display";
}

.notification-content {
  font-size: 32px;
  line-height: 1.2;
  font-family: "SF Display";
  font-weight: 400;
}

.notification-content strong {
  display: block;
  color: #000;
  margin-bottom: 4px;
  font-weight: 400;
  font-size: 32px;
  font-family: "SF Display";
}

.notification-content p {
  margin: 0;
  color: #333;
  font-weight: 400;
  font-family: "SF Display";
  font-size: 32px;
}

/* Different notification types with their specific app icons */
.notification.banner {
  background: rgba(255, 255, 255, 0.95);
}

/* .notification.alert {
  background: rgba(255, 235, 235, 0.95);
}

.notification.metric {
  background: rgba(235, 245, 255, 0.95);
} */

@keyframes slide-down {
  from {
    transform: translateY(-120%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-up {
  to {
    transform: translateY(-120%);
    opacity: 0;
  }
}

