/* 赛事中心页面样式 - 简洁风格，与系统统一 */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 24px;
}

.match-filter {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 6px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
    color: #666;
    transition: all 0.2s;
}

.filter-btn:hover {
    border-color: #3498db;
    color: #3498db;
}

.filter-btn.active {
    background: #3498db;
    color: #fff;
    border-color: #3498db;
}

.match-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.match-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.15s, box-shadow 0.15s;
}

.match-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 14px rgba(0,0,0,0.1);
}

.match-card-header {
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.match-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.match-card-title i {
    color: #3498db;
}

.match-status {
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
}

.status-signing { background: #d4edda; color: #155724; }
.status-scoring { background: #fff3cd; color: #856404; }
.status-finished { background: #d1ecf1; color: #0c5460; }
.status-draft { background: #e9ecef; color: #6c757d; }

.match-card-body {
    padding: 14px 18px;
}

.match-info-row {
    display: flex;
    gap: 20px;
    margin-bottom: 6px;
    font-size: 13px;
    color: #666;
}

.match-info-row i {
    color: #3498db;
    margin-right: 4px;
    width: 14px;
    text-align: center;
}

.match-desc {
    font-size: 13px;
    color: #888;
    margin-top: 6px;
    line-height: 1.5;
}

.match-card-footer {
    padding: 10px 18px;
    background: #fafbfc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.match-deadline {
    font-size: 12px;
    color: #999;
}

.match-deadline.urgent {
    color: #e74c3c;
    font-weight: 500;
}

.match-action {
    padding: 6px 16px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
}

.match-action:hover {
    background: #2980b9;
}

.match-action:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #aaa;
}

.empty-state i {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}

.empty-state p {
    font-size: 14px;
    margin: 0;
}
