/* CSS to hide Connect Phantom button */

/* Hide buttons containing Phantom wallet connection */
button[title*="Phantom"] {
    display: none !important;
}

button[title*="Connect Phantom"] {
    display: none !important;
}

/* Hide buttons with Phantom logo */
button img[src="/logo.png"] {
    display: none !important;
}

button:has(img[src="/logo.png"]) {
    display: none !important;
}

/* Hide by button text content */
button:contains("Connect Phantom") {
    display: none !important;
}

button:contains("Connecting…") {
    display: none !important;
}

/* Hide specific button styles that match Phantom button */
.inline-flex.items-center.gap-2.rounded-md.bg-white\/10.hover\:bg-white\/15 {
    display: none !important;
}

/* Alternative approach - hide all wallet connection buttons */
header button {
    display: none !important;
}

/* Show only specific buttons if needed - uncomment if other buttons need to be visible */
/* 
header button:not([title*="Phantom"]):not([title*="Connect"]) {
    display: inline-flex !important;
}
*/