/* 主内容区 */
.main-content {
    margin: 20px 0 40px;
}

/* 专家头部信息 */
.expert-header {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.expert-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e5799 0%, #207cca 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    font-weight: bold;
    margin-right: 30px;
    flex-shrink: 0;
}

.expert-info {
    flex: 1;
}

.expert-name {
    font-size: 28px;
    font-weight: 700;
    color: #1e5799;
    margin-bottom: 10px;
}

.expert-tag {
    display: inline-block;
    background-color: #f0f5ff;
    color: #1e5799;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.expert-bio {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* 专家数据统计 */
.expert-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #1e5799;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #777;
}

.stat-trend {
    font-size: 12px;
    display: block;
    margin-top: 3px;
}

.stat-trend.up {
    color: #4CAF50;
}

.stat-trend.down {
    color: #f44336;
}

/* 关注按钮 */
.follow-btn {
    background-color: #1e5799;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 20px;
}

.follow-btn:hover {
    background-color: #16457a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 87, 153, 0.2);
}

.follow-btn.following {
    background-color: #4CAF50;
}

/* 内容卡片 */
.content-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.card-title {
    font-size: 20px;
    color: #1e5799;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 筛选工具栏 */
.filter-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-options {
    display: flex;
    gap: 10px;
}

.filter-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: #1e5799;
    color: #1e5799;
}

.filter-btn.active {
    background-color: #1e5799;
    color: white;
    border-color: #1e5799;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background-color: white;
}

/* 推荐表格 */
.recommendations-table {
    width: 100%;
    border-collapse: collapse;
}

.recommendations-table th {
    background-color: #f9f9f9;
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    color: #555;
    border-bottom: 1px solid #eee;
    white-space: nowrap;
}

.recommendations-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #f5f5f5;
    vertical-align: middle;
}

.recommendations-table tr:last-child td {
    border-bottom: none;
}

.recommendations-table tr:hover {
    background-color: #f9f9ff;
}

/* 表格内容样式 */
.match-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.league-badge {
    display: inline-block;
    background-color: #f0f5ff;
    color: #1e5799;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.teams {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}

.match-time {
    color: #666;
    font-size: 14px;
}

.price {
    font-weight: 600;
    color: #1e5799;
}

.price.free {
    color: #4CAF50;
}

.prediction-status {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.prediction-status.warming {
    background-color: #fff3cd;
    color: #856404;
}

.prediction-status.success {
    background-color: #d4edda;
    color: #155724;
}

.prediction-status.failure {
    background-color: #f8d7da;
    color: #721c24;
}

/* 操作按钮 */
.action-btn {
    background-color: #1e5799;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.action-btn:hover {
    background-color: #16457a;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(30, 87, 153, 0.2);
}

.badge-success {
    color: #fff;
    background-color: #28a745
}

.badge-danger {
    color: #fff;
    background-color: #dc3545
}