/* Token Details Modal Styles - Positioning handled in styles.css */

#token-details-modal > div.modal-content {
    background: linear-gradient(135deg, #1a1a28 0%, #0f0f18 100%) !important;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 
        0 0 40px rgba(139, 92, 246, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Wallet cards with enhanced styling */
#token-details-modal .wallet-card {
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

#token-details-modal .wallet-card:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(139, 92, 246, 0.2);
}

/* Auto cashout buttons with glow */
#token-details-modal .auto-cashout-confirm {
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
}

#token-details-modal .auto-cashout-confirm:hover {
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.5);
}

#token-details-modal .auto-cashout-cancel {
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
}

#token-details-modal .auto-cashout-cancel:hover {
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.5);
}

