/* ElanNews Push — charte vert/jaune/noir */

.enp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 999999;
  opacity: 0;
  transition: opacity .3s ease;
  padding: 0 16px 24px;
}
@media (min-width: 600px) {
  .enp-overlay { align-items: center; padding: 16px; }
}
.enp-overlay.enp-show { opacity: 1; }

.enp-card {
  background: #ffffff;
  color: #0a0a0a;
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  padding: 28px 24px 22px;
  text-align: center;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
  border-top: 6px solid #009639;      /* vert Guinée */
  border-bottom: 6px solid #FCD116;   /* jaune Guinée */
  transform: translateY(24px);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.enp-overlay.enp-show .enp-card { transform: translateY(0); }

.enp-bell {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 8px;
}
.enp-title {
  margin: 4px 0 8px;
  font-size: 22px;
  font-weight: 800;
  color: #0a0a0a;
}
.enp-text {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.5;
  color: #444;
}
.enp-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.enp-btn {
  border: none;
  border-radius: 10px;
  padding: 13px 18px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .12s ease, filter .12s ease;
  font-family: inherit;
}
.enp-btn:active { transform: scale(.98); }
.enp-btn-yes {
  background: #009639;
  color: #fff;
}
.enp-btn-yes:hover { filter: brightness(1.08); }
.enp-btn-no {
  background: transparent;
  color: #777;
  font-weight: 600;
}
.enp-btn-no:hover { color: #0a0a0a; }

/* Toast de confirmation */
.enp-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 20px);
  background: #0a0a0a;
  color: #fff;
  padding: 13px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  z-index: 999999;
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
  border-left: 4px solid #FCD116;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
  max-width: 90vw;
}
.enp-toast.enp-show { opacity: 1; transform: translate(-50%, 0); }
.enp-toast-error { border-left-color: #CE1126; }
