.member-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    font-family: Arial, sans-serif;
}

.member-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    width: 250px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.member-card img, .benutzerbild {
    width: auto;
    height: 200px;
	max-width: 200px;
    border-radius: 15%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid #ff6600;
}

.member-card h3 {
    color: #ff6600;
    margin: 8px 0 12px 0;
    font-size: 1.3em;
}

#member-search {
	background-color: #fff; /* Hintergrund weiß */
    color: black;             /* Schrift schwarz */
	width: 100%;
	margin-bottom: 20px;
	padding: 8px;
	max-width: 500px;
}

.member-card .details {
    text-align: left;
    font-size: 0.9em;
    color: #222;
}

.member-card .details p {
    margin: 6px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.member-card .details p svg {
    fill: #ff6600;
    flex-shrink: 0;
}

.member-card .details .email {
    font-size: 0.75em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.member-card .roles {
    margin-top: 10px;
    font-size: 0.85em;
    color: #555;
}

.member-card a {
  color: #333333;       /* dunkles Grau */
  text-decoration: none; /* optional: Unterstreichung entfernen */
}

/* optional: Hover-Effekt */
.member-card a:hover {
  color: #555555;       /* etwas helleres Grau beim Hover */
}

.mb-birthdays-list {
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
}