/* ================= LIVE ALERTS ================= */

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

/* Alert box */
.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;
}

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

/* Coin icon (40px) */
.live-alert .icon{
  width:40px;
  height:40px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.live-alert .icon img{
  width:40px;
  height:40px;
  object-fit:contain;
}

/* Content */
.live-alert h6{
  font-size:14px;
  margin:0;
  font-weight:600;
  color:#111;
}

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

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

/* Deposit / Withdrawal indicator */
.live-alert.deposit{
  border-left:4px solid #2ecc71;
}

.live-alert.withdrawal{
  border-left:4px solid #e74c3c;
}

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

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

.close-alert:hover{
  color:#000;
}

/* Sound toggle */
.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;
  user-select:none;
}

.sound-toggle:hover{
  background:#000;
}
