
/*STAFF*/
.team-container{
	display: flex;
  align-items: center;
	margin-left: 50px;
}
.team-info-box {
  position: relative;
  display: inline-block;
}

.team-info-text {
  visibility: hidden;
  background-color: var(--mittel);
  color: #fff;
  text-align: center;
  padding: 5px 0;
  font-size: 12px;
  width: 100px;
  bottom: 100%;
  left: 50%;
  margin-left: -50px;
  position: absolute;
  z-index: 1;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.team-info-box:hover .team-info-text {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.team-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--mittel);
  transition: transform 0.3s ease;
	margin: 2px;
}

.team-avatar:hover {
  transform: scale(1.1);
}
/**********************************************************/

/* ****Dropdown**** */
.dropdown {
  position: relative;
  display: inline-block;
	padding-left: 5px;	
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--dunkel);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
  z-index: 1;
	line-height: 40px;
}

.dropdown:hover .dropdown-content {
  display: block;
}
/***************************************/
.header-table {
  display: flex;
  flex-direction: row;
	margin-left: 0.5rem;
  margin-right: 0.5rem;
  max-height: 220px;
  height: 100%;
}

.header-table-box {
  background: transparent;
  /*border: 1px solid var(--text);*/
  border-radius: 1rem;
 padding: 0.5rem;
  margin-top: 2rem;
  position: relative;
  display: flex;
  flex: 1;
  z-index: 910
}
.header-table-title{
  font-family: 'Yeseva One';
  font-size: 1.3rem;
  color: var(--akzent);
  position: absolute;
  top: -2.1rem;
  left: 1.3rem;
  padding: 0 0.75rem;
}
.header-box-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  background:  rgba(34, 39, 43, 0.3);
  border: 1px solid var(--akzent);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(126, 37, 43, 0.05);
	overflow: auto;
	scrollbar-width: none;
  ::[-webkit-scrollbar { display: none; }]
}

.header-navbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  padding: 5px 0px;
  max-width: 1100px;
  margin: 15px auto 25px auto;
  box-sizing: border-box;
}
.header-navbar-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.header-navbar-item {
  display: flex;
  border-radius: 12px;
  padding: 8px 16px;
  font-family: 'Yeseva One';
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 700;
	border: 1px solid var(--text);
	background: var(--mittel);
}
.headercontent{
  text-align: justify;
  font-size: 12px;
	margin-top: 50px;
	color: var(--text);
}
.headercontent3{
margin-top:60px;
  text-align: justify;
  font-size: 12px;
	color: var(--text);
}

		