/* Wallet notification styles */
.wallet-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 102, 0, 0.9);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    animation: slide-in 0.5s ease-out;
    max-width: 300px;
    font-family: Arial, sans-serif;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-content span {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.notification-content button {
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    transition: transform 0.2s ease;
}

.notification-content button:hover {
    transform: scale(1.1);
}

#notification-reconnect {
    background-color: white;
    color: #ff6600;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
}

#notification-dismiss {
    font-size: 16px;
    padding: 0 5px;
}

@keyframes slide-in {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slide-out {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}