/**
 * SendMoo Frontend Styles
 * Essential plugin styles only - template-specific styles removed
 */

/* Base Plugin Styles */
.sendmoo-crypto-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1e293b;
}

/* Override WordPress admin bar for crypto pages */
.sendmoo-crypto-page #wpadminbar {
    display: none !important;
}

.sendmoo-crypto-page html {
    margin-top: 0 !important;
}

/* Essential Crypto Display Styles */
.crypto-symbol {
    font-weight: 600;
    color: #475569;
    font-size: 14px;
}

.balance-amount {
    font-weight: 700;
    color: #0f172a;
    font-size: 16px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

/* Virtual Account Info */
.account-number,
.routing-number {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 16px;
    font-weight: 600;
    color: #0c4a6e;
    margin: 4px 0;
}

/* Transaction Amount Display */
.transaction-amount {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-weight: 600;
    font-size: 14px;
}

.transaction-amount.positive {
    color: #059669;
}

.transaction-amount.negative {
    color: #dc2626;
}

/* Loading States */
.sendmoo-loading {
    opacity: 0.6;
    pointer-events: none;
}

.sendmoo-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error States */
.sendmoo-error {
    color: #dc2626;
    background: #fef2f2;
    border: 1px solid #fecaca;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
}

/* Success States */
.sendmoo-success {
    color: #059669;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
}

/* Utility Classes */
.sendmoo-hidden {
    display: none !important;
}

.sendmoo-text-center {
    text-align: center;
}

.sendmoo-mt-4 {
    margin-top: 1rem;
}

.sendmoo-mb-4 {
    margin-bottom: 1rem;
}

.sendmoo-p-4 {
    padding: 1rem;
}

