/* Floating withdrawal box */
  .floating-withdrawals {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 250px;
    background: rgba(0, 0, 0, 0.8); /* Transparent black */
    border: 2px solid gold;
    border-radius: 10px;
    padding: 10px;
    z-index: 9999;
    box-shadow: 0px 4px 8px rgba(255, 215, 0, 0.5);
    font-family: Arial, sans-serif;
    color: white;
    overflow: hidden;
  }

  /* Withdrawal row */
  .withdrawal-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    border-bottom: 1px solid gold;
  }

  /* Profile image */
  .withdrawal-item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid gold;
  }

  /* Text content */
  .withdrawal-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-right: 10px;
  }

  .withdrawal-text .username {
    font-weight: bold;
    font-size: 14px;
  }

  .withdrawal-text .amount {
    font-size: 12px;
    color: gold;
  }