
/* Withdrawal Feed (Ready) */
.withdrawal-feed .notification-container{
  display: grid;
  gap: 10px;
  max-width: 560px;
}
.withdrawal-feed .notification{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: #2b2f34;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 3px 10px rgba(0,0,0,.25);
}
.withdrawal-feed .icon{
  width: 36px; height: 36px; object-fit: contain;
  border-radius: 50%; background: #444;
}
.withdrawal-feed {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content:center;
    justify-content: center;  
}
.withdrawal-feed p{ margin: 0; line-height: 1.35; color: #e6f0ff; font-size: 14px; }
.withdrawal-feed .highlight{ color: #7fd3ff; font-weight: 800; }
