/* Matches the Wallet Overview Earn action in both themes. */
.wallet-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: inherit;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

body:not(.dark-theme) .wallet-action {
    border-color: rgba(0, 0, 0, 0.12);
    background: rgba(0, 0, 0, 0.025);
}

.wallet-action i {
    font-size: 1.1rem;
    color: #4E71DD;
}

body .wallet-action:hover:not(:disabled),
body .wallet-action:focus-visible:not(:disabled) {
    border-color: #4E71DD;
    background: rgba(78, 113, 221, 0.12);
    color: inherit;
    transform: translateY(-1px);
    outline: none;
}

.wallet-action:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

@media (prefers-reduced-motion: reduce) {
    body .wallet-action:hover:not(:disabled),
    body .wallet-action:focus-visible:not(:disabled) {
        transform: none;
    }
}
