#notif-status {
  font-size: 16px;
  color: #444;
  margin-top: 20px;
}

#notif-popup {
  display: none;
}

.notif-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 9900;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-in;
}

.notif-box {
  background-color: #fff;
  padding: 24px 16px;
  text-align: center;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.notif-box.fade-out {
  opacity: 0;
  transform: translateY(20px);
}

.notif-box i {
  color: var(--primary, #ff9800);
  margin-bottom: 12px;
}

.notif-box p {
  font-size: 14px;
  margin: 0 0 16px;
}

#allow-notif-btn {
  background-color: var(--primary, #ff9800);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 6px;
  display: block;
  margin: 4px auto;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#allow-notif-btn:hover {
  background-color: #e68900;
}

.notif-box span {
  font-size: 11px;
  text-align: center;
  margin: 5px;
  color: var(--accentGreen);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
