.notif-alert-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.notif-alert-box {
  background: white;
  padding: 35px;
  border-radius: 28px;
  border: 2px solid #ff6b6b;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
  animation: jcPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.notif-alert-icon {
  background: #ffefef;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notif-alert-icon svg {
  stroke: #ff6b6b;
}

.notif-alert-message h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #ff6b6b;
}

.notif-alert-message p {
  font-size: 14px;
  color: #2c5d6b;
  margin-top: 8px;
  line-height: 1.5;
  font-weight: 500;
}

.notif-alert-btn {
  background: #ff6b6b;
  color: white;
  border: none;
  padding: 10px 30px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.notif-alert-btn:hover {
  transform: translateY(-2px);
  background: #ff5252;
}

@keyframes jcPop {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
