#stationen img{
	width: 30px;
	min-width: 25px;
	height: auto;
}

#stationen tbody tr{
	cursor: pointer;
}
#stationen tbody tr:hover, #stationen tbody tr.is-active{
	background-color: rgba(199,234,249,0.85);
}
#stationen td, #stationen th{
	padding: 0.5rem 1rem;
}

@media screen and (max-width: 720px){
	#stationen thead{
		display: none;
	}
	#stationen, #stationen tbody, #stationen tr, #stationen td {
    	display: block;
    	width: 100%;
  	}
	#stationen tr {
		margin-bottom: 1rem;
		border: 1px solid #ccc;
		padding: 0.5rem;
	}

	#stationen td {
		position: relative;
		padding-left: 50%; /* Platz für das Label */
		text-align: left;
		border: none;
		border-bottom: 1px solid #eee;
	}

	#stationen td::before {
		content: attr(data-label);
		position: absolute;
		left: 0;
		top: 0;
		width: 45%;
		padding: 0.5rem;
		font-weight: bold;
		white-space: nowrap;
		color: #555;
	}
}