/* 用户账户管理页面样式 */
.account-container {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 20px 0;
}

.account-card {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.account-header {
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    padding: 16px 20px;
}

.btn-primary {
    background: #1890ff;
    border-color: #1890ff;
}

.btn-primary:hover {
    background: #40a9ff;
    border-color: #40a9ff;
}

.table th {
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 600;
    color: #262626;
}

.table td {
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.badge-success {
    background-color: #52c41a;
}

.badge-danger {
    background-color: #ff4d4f;
}

.exchange-tag {
    background: #1890ff;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}