
/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #D6EEEE;
}






h1 {
	text-align: center;
	margin-bottom: 30px;
	color: #222;
}
.gruppenblock {
	margin-bottom: 60px;
	padding-bottom: 30px;
	border-bottom: 2px solid #e0e0e0;
}
.vorstand-container {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
}
.mitglied {
	width: 220px;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
}
.mitglied-bild {
	width: 220px;
	height: 220px;
	overflow: hidden;
	border-radius: 10px 10px 0 0;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	flex-shrink: 0;
}
.mitglied-bild img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.mitglied-info {
	width: 220px;
	background-color: #f9f9f9;
	border: 1px solid #ccc;
	border-top: none;
	border-radius: 0 0 10px 10px;
	padding: 15px;
	box-sizing: border-box;
	text-align: center;
	overflow-wrap: break-word;
	word-break: break-word;
}
.name {
	font-weight: bold;
	font-size: 1.2em;
	margin-bottom: 6px;
}
.funktion {
	color: #555;
	margin-bottom: 10px;
}
@media (max-width: 480px) {
	.mitglied {
		width: 100%;
		max-width: 320px;
		margin: 0 auto;
	}
	.mitglied-bild, .mitglied-info {
		width: 100%;
		height: auto;
		border-radius: 10px 10px 0 0;
	}
	.mitglied-bild img {
		height: auto;
	}
}
