.trainer-tabelle {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    margin: 0;
    list-style: none;
}

.trainer-tabelle .trainer-zelle {
    width: 300px;
    text-align: center;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trainer-zelle img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	pointer-events: auto;
}

.trainer-zelle img:hover {
    transform: scale(1.05);
}

.trainer-zelle div {
    font-weight: bold;
    margin-top: 8px;
    font-size: 14px;
    color: #000;
}

.trainer-zelle a {
    font-size: 13px;
    color: #003399;
    text-decoration: none;
    margin-top: 2px;
    word-break: break-word;
}

.trainer-zelle a:hover {
    text-decoration: underline;
}

/* Optional: Popup-Styling */
#trainer-popup {
    background: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    max-width: 600px;
    margin: auto;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

#trainer-popup-content {
	color: black;
}

#trainer-popup a {
    color: #003399;
    text-decoration: none;
}

#trainer-popup a:hover {
    text-decoration: underline;
}

