/* UMC Wallet Onboarding Styles */

.umc-wallet-container {
    max-width: 600px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.umc-wallet-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.umc-wallet-heading {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    text-align: center;
}

.umc-wallet-status {
    margin-bottom: 24px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f9fafb;
    border-radius: 8px;
    margin-bottom: 8px;
    border-left: 4px solid #d1d5db;
}

.status-item:last-child {
    margin-bottom: 0;
}

.status-icon {
    font-size: 20px;
    min-width: 24px;
}

.status-text {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.umc-wallet-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.umc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 48px;
}

.umc-button-primary {
    background: #3b82f6;
    color: white;
}

.umc-button-primary:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.umc-button-warning {
    background: #f59e0b;
    color: white;
}

.umc-button-warning:hover {
    background: #d97706;
    transform: translateY(-1px);
}

.umc-wallet-connected {
    border-top: 1px solid #e5e7eb;
    padding-top: 24px;
}

.connected-info {
    text-align: center;
    margin-bottom: 24px;
}

.connected-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #059669;
    margin-bottom: 8px;
}

.wallet-address {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 14px;
    color: #6b7280;
    background: #f3f4f6;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
}

.umc-token-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 24px;
    border-radius: 12px;
    color: white;
    text-align: center;
}

.umc-token-info h3 {
    color: white;
    margin-bottom: 16px;
}

.token-details {
    margin-bottom: 20px;
}

.token-details p {
    margin: 8px 0;
    font-size: 14px;
}

.token-details strong {
    color: #e0e7ff;
}

.token-details a {
    color: #c7d2fe;
    text-decoration: none;
}

.token-details a:hover {
    color: white;
    text-decoration: underline;
}

.umc-buy-button {
    background: #10b981;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.umc-buy-button:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .umc-wallet-card {
        padding: 20px;
        margin: 10px;
    }
    
    .umc-wallet-heading {
        font-size: 20px;
    }
    
    .umc-button {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .umc-wallet-card {
        background: #1f2937;
        border-color: #374151;
        color: #f9fafb;
    }
    
    .umc-wallet-heading {
        color: #f9fafb;
    }
    
    .status-item {
        background: #374151;
        border-left-color: #6b7280;
    }
    
    .status-text {
        color: #d1d5db;
    }
    
    .wallet-address {
        background: #374151;
        color: #d1d5db;
    }
}

/* Elementor Integration Styles */
.elementor-widget-umc_wallet_prompt .umc-wallet-container {
    width: 100%;
}

.elementor-widget-umc_wallet_prompt .umc-wallet-card {
    margin: 0;
}