/* ================= LIVE ALERTS ================= */
#live-notifications{
  position:fixed;
  bottom:20px;
  left:20px;
  z-index:9999;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.live-alert{
  width:320px;
  background:#ffffff;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,.15);
  padding:14px 16px;
  display:flex;
  gap:12px;
  align-items:flex-start;
  animation:slideIn .4s ease;
  position:relative;
}

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

.live-alert .flag{
  font-size:22px;
}

.live-alert h6{
  font-size:14px;
  margin:0;
  font-weight:600;
}

.live-alert p{
  font-size:12px;
  margin:2px 0;
  color:#555;
}

.live-alert .hash{
  font-family:monospace;
  font-size:11px;
  color:#777;
}

.live-label{
  position:absolute;
  top:-8px;
  right:12px;
  background:#0d6efd;
  color:#fff;
  font-size:10px;
  padding:2px 6px;
  border-radius:6px;
}

.close-alert{
  position:absolute;
  top:6px;
  right:8px;
  border:none;
  background:none;
  font-size:14px;
  cursor:pointer;
  color:#888;
}

.sound-toggle{
  position:fixed;
  bottom:20px;
  right:20px;
  background:#111;
  color:#fff;
  padding:10px 16px;
  border-radius:30px;
  font-size:13px;
  cursor:pointer;
  z-index:9999;
}
