/* 统一导航菜单样式 */
.user-navigation {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.nav-tabs-wrapper {
    padding: 0;
    overflow-x: auto;
}

.nav-tabs {
    border: none;
    padding: 10px;
    white-space: nowrap;
    flex-wrap: nowrap;
}

.nav-tabs .nav-item {
    margin: 0 5px;
}

.nav-tabs .nav-link {
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-tabs .nav-link i {
    margin-right: 8px;
    color: #C8A165;
}

.nav-tabs .nav-link:hover {
    background: rgba(200, 161, 101, 0.1);
    color: #C8A165;
}

.nav-tabs .nav-link.active {
    background: #C8A165;
    color: #fff;
}

.nav-tabs .nav-link.active i {
    color: #fff;
}

/* 统一卡片样式 */
.wallet-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 24px;
    overflow: hidden;
}

.wallet-card .card-header {
    background: #f8f9fa;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}

.wallet-card .card-header h4,
.wallet-card .card-header h5 {
    margin: 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.wallet-card .card-header i {
    color: #C8A165;
    margin-right: 8px;
}

.wallet-card .card-body {
    padding: 24px;
}

/* 统一表单样式 */
.wallet-form .form-group {
    margin-bottom: 24px;
}

.wallet-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.wallet-form .form-label i {
    color: #C8A165;
    margin-right: 5px;
}

.wallet-form .form-control {
    background-color: #f8f9fa !important;
    border: 1px solid #ced4da !important;
    border-radius: 8px !important;
    padding: 12px !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #495057 !important;
    transition: all 0.3s ease !important;
}

.wallet-form .form-control:focus {
    background-color: #fff !important;
    border-color: #C8A165 !important;
    box-shadow: 0 0 0 0.2rem rgba(200, 161, 101, 0.25) !important;
}

/* 统一按钮样式 */
.btn-wallet {
    background: #C8A165;
    border: none;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-wallet:hover {
    background: #b08f5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 161, 101, 0.3);
}

.btn-wallet-outline {
    background: transparent;
    border: 2px solid #C8A165;
    color: #C8A165;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-wallet-outline:hover {
    background: #C8A165;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 161, 101, 0.3);
}

/* 统一表格样式 */
.wallet-table {
    width: 100%;
    margin-bottom: 0;
}

.wallet-table th {
    background: #f8f9fa;
    color: #333;
    font-weight: 600;
    padding: 15px;
    border-bottom: 2px solid #e9ecef;
}

.wallet-table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    color: #666;
    vertical-align: middle;
}

.wallet-table tr:last-child td {
    border-bottom: none;
}

/* 状态标签样式 */
.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}

.status-completed {
    background: #28a745;
    color: #fff;
}

.status-pending {
    background: #ffc107;
    color: #000;
}

.status-failed {
    background: #dc3545;
    color: #fff;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .nav-tabs .nav-link {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .wallet-card .card-header {
        padding: 15px;
    }
    
    .wallet-card .card-body {
        padding: 15px;
    }
    
    .wallet-form .form-control {
        font-size: 16px !important;
    }
    
    .btn-wallet,
    .btn-wallet-outline {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .wallet-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
} 