/* Live notification – bolha verde no canto esquerdo inferior */

#notification-container {
  position: fixed;
  top: 20px;        /* agora o feed fica no topo */
  left: 20px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}


.notification {
  background: rgba(34, 197, 94, 0.25); /* verde transparente */
  border: 1px solid #22c55e;
  color: #065f46;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
  max-width: 240px;
  animation: slideIn 0.35s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.notification.hide {
  animation: fadeOut 0.35s forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateX(-20px);
  }
}

/* No mobile, sobe um pouco mais para não pegar UI fixa */
@media(max-width: 600px){
  #notification-container{
    top: 70px;  /* sobe ou desce como preferir */
    left: 10px;
  }
}

.live-banner {
  position: fixed;          /* 👈 agora fica sobreposto, não empurra nada */
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background: rgba(34, 197, 94, 0.18);
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 600;
  color: #065f46;
  z-index: 9999;
  backdrop-filter: blur(4px);
  animation: bannerIn 0.35s ease-out;
}

@keyframes bannerIn {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}

.hide-banner {
  animation: bannerOut 0.35s forwards ease;
}

@keyframes bannerOut {
  to { opacity: 0; transform: translateY(-100%); }
}

