/* Status Bar */
.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-label {
    font-weight: 500;
    color: #666;
}

.status-value {
    font-weight: 600;
    color: #333;
}

.refresh-btn, .stats-btn, .account-balance-btn {
    background: #7c3aed;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    margin-left: 8px;
}

.refresh-btn:hover, .stats-btn:hover, .account-balance-btn:hover {
    background: #6d28d9;
    transform: translateY(-1px);
}

.refresh-btn:active, .stats-btn:active, .account-balance-btn:active {
    transform: translateY(0);
}

.stats-btn {
    background: #059669;
}

.stats-btn:hover {
    background: #047857;
}

.account-balance-btn {
    background: #7c3aed;
}

.account-balance-btn:hover {
    background: #6d28d9;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 20px;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.card-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
}

.card-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
}

/* Balance Display */
.balance-display {
    text-align: center;
    margin-bottom: 30px;
}

.balance-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #059669;
    display: block;
    margin-bottom: 5px;
}

.balance-currency {
    font-size: 1.5rem;
    font-weight: 500;
    color: #6b7280;
}

/* Footer */
.footer {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
