.spieler-bild-wrapper {
    position: relative;
    z-index: 0 !important;
	cursor: pointer; /* Hand anzeigen beim Hover */
}

.spieler-bild {
    position: relative;
    z-index: 1 !important; /* Bild darf unter Popup liegen */
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
}

.player-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 999999 !important; /* <- SEHR hoch setzen */
}

.player-popup-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    z-index: 1000000 !important; /* <- nochmal sicher */
    position: relative;
}

.popup-header {
    background-color: #e3000f;
    color: white;
    padding: 10px;
    font-size: 18px;
    border-radius: 10px 10px 0 0;
    text-align: center;
}

.popup-body {
    padding: 15px;
    color: #000;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #000;
    cursor: pointer;
}