.dog-table {
	width: 100%;
	font-family: inherit;
	border: 1px solid #dcdcdc;
	box-sizing: border-box;
}

.dog-table-header {
	display: flex;
	justify-content: space-between;
	padding: 15px 20px;
	font-weight: bold;
}

.dog-table-body {
	display: flex;
	flex-direction: column;
}

.dog-table-row {
	display: grid;
	grid-template-columns: 1fr 1.2fr 1fr;
	border-top: 1px solid #dcdcdc;
}

.dog-table-row:nth-child(even) {
	background-color: #f5f7fa;
}

.judge-cell, .category-cell {
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.category-cell {
	border-left: 1px solid #dcdcdc;
	border-right: 1px solid #dcdcdc;
	flex-direction: column;
}

.category-cell p {
	margin: 0 0 10px 0;
}
.category-cell p:last-child {
	margin: 0;
}

.judge-name {
	font-weight: bold;
	margin-right: 5px;
}

@media (max-width: 767px) {
	.dog-table-header {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 10px;
	}

	.dog-table-row {
		display: grid;
		grid-template-columns: 1fr 1.2fr 1fr;
		align-items: stretch;
	}

	.judge-cell {
		flex-direction: column;
		justify-content: center;
		text-align: center;
		word-wrap: break-word;
		white-space: normal;
		padding: 10px 5px;
	}
	
	.judge-name {
		margin-right: 0;
		margin-bottom: 3px;
	}

	.category-cell {
		white-space: normal;
		font-size: 13px;
		padding: 10px 5px;
	}
}