/* Canlı İşlem Bildirimleri */
#transaction-notifications {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
}

.transaction-toast {
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
    border-left: 4px solid #00e676;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 230, 118, 0.3);
    animation: slideInRight 0.5s ease, fadeOut 0.5s ease 4.5s;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.transaction-toast.withdraw {
    border-left-color: #ff4444;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 68, 68, 0.3);
}

.toast-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.toast-icon.deposit {
    background: linear-gradient(135deg, #00c853, #00e676);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.5);
}

.toast-icon.withdraw {
    background: linear-gradient(135deg, #ff4444, #ff6b6b);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
}

.toast-content {
    flex: 1;
}

.toast-user {
    font-weight: 700;
    color: #fff;
    font-size: 15px;
    margin-bottom: 3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.toast-action {
    color: #999;
    font-size: 13px;
}

.toast-amount {
    font-weight: 700;
    font-size: 16px;
    color: #ffa500;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: translateX(400px);
    }
}

/* Mobil Responsive */
@media (max-width: 768px) {
    #transaction-notifications {
        top: 60px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .transaction-toast {
        padding: 12px 15px;
    }
    
    .toast-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .toast-user {
        font-size: 14px;
    }
    
    .toast-amount {
        font-size: 15px;
    }
}
