.wjmp-match-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.wjmp-match-card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 16px;
	border: 1px solid #e2e2e2;
	border-radius: 8px;
	text-decoration: none;
	color: inherit;
	background: #fff;
	transition: box-shadow .15s;
}
.wjmp-match-card:hover {
	box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.wjmp-match-card__main {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.wjmp-match-card__company {
	font-size: 12px;
	color: #666;
}
.wjmp-match-card__score,
.wjmp-match-score--high,
.wjmp-match-score--mid,
.wjmp-match-score--low {
	font-weight: 700;
	border-radius: 20px;
	padding: 4px 12px;
	font-size: 13px;
}
.wjmp-match-score--high { background: #e7f6ec; color: #1a7f37; }
.wjmp-match-score--mid  { background: #fff6e5; color: #9a6700; }
.wjmp-match-score--low  { background: #fdeceb; color: #b32d2e; }

.wjmp-match-table {
	width: 100%;
	border-collapse: collapse;
}
.wjmp-match-table th,
.wjmp-match-table td {
	text-align: left;
	padding: 8px 10px;
	border-bottom: 1px solid #eee;
	font-size: 13px;
	vertical-align: middle;
}
.wjmp-match-warn {
	color: #b32d2e;
	font-size: 11px;
}
