/* body {
	width:300px;height:100px;
	background-color:#b81f82;
	filter:progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr=#b81f82, endColorstr=#f059c7);
	background-image:-moz-linear-gradient(left top, #b81f82 0%, #f059c7 100%);
	background-image:-webkit-linear-gradient(left top, #b81f82 0%, #f059c7 100%);
	background-image:-ms-linear-gradient(left top, #b81f82 0%, #f059c7 100%);
	background-image:linear-gradient(left top, #b81f82 0%, #f059c7 100%);
	background-image:-o-linear-gradient(left top, #b81f82 0%, #f059c7 100%);
	background-image:-webkit-gradient(linear, left top, right bottom, color-stop(0%,#b81f82), color-stop(100%,#f059c7));
	color: darkblue;
} */

.header-image {
	display: none;
	height: 150px;
	background-image: url(header.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	margin-bottom: 10px;
}

/* dafür muss man class="navbar navbar-default navbar-custom"
   anstatt        class="navbar navbar-default"
   verwenden:
.navbar-custom {
	background-color: darkblue;
	color: darkmagenta;
} */

/* for displaying the colors of minigolf results */
.minigolf-result-color-blau {
	color: blue;
}

.minigolf-result-color-gruen {
	color: green;
}

.minigolf-result-color-rot {
	color: red;
}

.minigolf-result-color-schwarz {
	color: black;
}

p {
  text-align: justify;
}

table {
  border-collapse: collapse;
}

table, th, td {
  border: 1px solid black;
}

th, td {
  text-align: center;
  padding: 0 15px 0 15px;
}

tbody>tr:hover {
  background-color: #ffff99;
}

.all-copy {
	-webkit-user-select: all;  /* Chrome all / Safari all */
	-moz-user-select: all;     /* Firefox all */
	-ms-user-select: all;      /* IE 10+ */
	user-select: all;          /* Likely future */
}