.handballResultsContainer {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.handballMatchContainer {
	width: 100%;
	background: #fff;
	color: #2f5aae;
	border: 1px solid #2f5aae; 
	border-radius: 15px;
	padding: 10px 10px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	height: fit-content;
	max-width: 1150px;
}

.handballMatch_matchInfoContainer {
	width: 174px;
	border-right: 1px solid #2f5aae; 
}

.handballMatch_division {
	font-weight: bold;
}

.handballMatch_teamsContainer {
	display: flex;
	align-items: center;
	width: calc(100% - 184px);
    margin-left: 10px;
}

.nameAndLogoContainer {
	display: flex;
	align-items: center;
	flex-direction: column;
	flex: 1 1 0px;
	text-align: center;
}

.handballMatchContainer .nameAndLogoContainer img.matchLogo {
	width: 50px;
	margin: 5px;
}

@media (max-width: 991px) {

	.handballMatchContainer {
		flex-direction: column;
	}

	.handballMatch_matchInfoContainer {
		width: 100%;
		border-right: none;
		border-bottom: 1px solid #2f5aae; 
		text-align: center;
	}

	.handballMatch_teamsContainer {
		width: 100%;
		margin-left: 0;
	}

}