/* 陪玩团队页面样式 */
.teams-page {
    padding: 30px 0;
}

.team-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.team-tab {
    padding: 10px 20px;
    background-color: #f8f9fa;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.team-tab:hover {
    background-color: #e7f3ff;
    color: #007bff;
    text-decoration: none;
}

.team-tab.active {
    background-color: #007bff;
    color: white;
}

.team-desc {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

/* 筛选栏样式 */
#game-filter, #price-filter {
    height: 40px;
    border-radius: 6px;
}

#search-btn {
    height: 40px;
}

/* 模态框样式优化 */
.modal-content {
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
}

.modal-header {
    border-bottom: 1px solid #eee;
    padding: 15px 20px;
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    border-top: 1px solid #eee;
    padding: 15px 20px;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .team-tabs {
        justify-content: center;
    }
    
    .team-tab {
        padding: 8px 15px;
        font-size: 14px;
    }
}