 /* Styles für das Pop-Up */
        .popup {
            display: none; /* Anfangs unsichtbar */
            position: fixed;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* Halbtransparenter Hintergrund */
            z-index: 1000; /* Über anderen Inhalten */
            overflow: auto;
        }

        .popup-content {
            background-color: #fff;
            margin: 15% auto;
            padding: 20px;
            border-radius: 10px;
            width: 80%;
            max-width: 600px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .close-btn {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }

        .close-btn:hover,
        .close-btn:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }

        form {
            display: flex;
            flex-direction: column;
        }

        form label {
            margin-top: 10px;
        }

        form input {
            padding: 10px;
            margin-top: 5px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }

        form button {
            margin-top: 20px;
            padding: 10px;
            border: none;
            border-radius: 5px;
            background-color: #00796b;
            color: white;
            font-size: 16px;
            cursor: pointer;
        }

        form button:hover {
            background-color: #004d40;
        }

        /* Styles für den Link */
        .open-popup-link {
            color: #00796b;
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
        }

        .open-popup-link:hover {
            text-decoration: underline;
        }

        /* Basis-Container für die Tribute-Karten */
        .tributes_border {
            width: 22%;
            float: left;
            background-color: #f9f9f9; /* Hellerer Hintergrund für bessere Lesbarkeit */
            margin: 1% 0.5%; /* Verändert Margin für bessere Positionierung */
            border-radius: 10px; /* Abgerundete Ecken für ein modernes Aussehen */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Schattierung für mehr Tiefe */
            padding: 10px; /* Etwas Innenabstand für mehr Raum */
            box-sizing: border-box; /* Boxmodell berücksichtigen */
            transition: transform 0.3s, box-shadow 0.3s; /* Übergangseffekte */
        }

        /* Hover-Effekt für Tribute-Karten */
        .tributes_border:hover {
            transform: scale(1.05); /* Vergrößert die Karte bei Hover */
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Stärkere Schattierung bei Hover */
        }

        /* Stil für den Namen der Tribute */
        .tributes_name {
            text-align: center;
            text-transform: uppercase;
            font-weight: 600; /* Leicht fetter für mehr Sichtbarkeit */
            font-family: "New Amsterdam", sans-serif;
            font-size: 22px; /* Etwas kleinere Schriftgröße */
            color: #333; /* Dunklere Farbe für bessere Lesbarkeit */
            margin: 10px 0; /* Mehr Abstand oben und unten */
        }

        /* Stil für das Avatar-Bild */
        .tributes_avatar {
            text-align: center;
            margin-bottom: 10px; /* Abstand nach unten */
        }

        .tributes_avatar img {
            border-radius: 50%; /* Runde Bilder */
            width: 120px; /* Größeres Bild für bessere Sichtbarkeit */
            height: 120px;
            border: 3px solid #ddd; /* Rand um das Bild */
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Schattierung für mehr Tiefe */
        }

        /* Stil für Fakt-Boxen */
        .tributes_fakt,
        .tributes_games_fakt {
            text-align: center;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            font-weight: 600;
            font-size: 12px; /* Größere Schriftgröße für bessere Lesbarkeit */
            background-color: #ffffff; /* Weißer Hintergrund für bessere Lesbarkeit */
            color: #555; /* Dunklere Schriftfarbe */
            margin: 5px 0; /* Mehr Abstand oben und unten */
            padding: 5px;
            border-radius: 5px; /* Abgerundete Ecken */
            border: 1px solid #ddd; /* Rand für die Box */
        }

        /* Container für zentrierte Elemente */
        .tributes_center {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px; /* Abstand zwischen den Elementen */
        }

        /* Stil für verstorbene Tribute */
        .tribute_deceased {
            background-color: #e0e0e0; /* Heller Grauton für verstorbene Tribute */
            border: 2px solid #c0c0c0; /* Grauer Rand */
            opacity: 0.7; /* Leichte Transparenz */
            position: relative; /* Positionierung für Overlay */
        }

        .tribute_deceased:after {
            content: "Verstorben"; /* Overlay-Text für verstorbene Tribute */
            position: absolute;
            top: 45%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #ff0000; /* Rote Farbe für den Text */
            font-size: 20px;
            font-weight: bold;
            text-transform: uppercase;
            background-color: rgba(255, 255, 255, 0.8); /* Halbtransparentes Hintergrund */
            padding: 10px;
            border-radius: 5px;
        }

/* Stil für das Eingabefeld */
.cssdesign {
    width: 100%; /* Volle Breite des Containers nutzen */
    padding: 10px; /* Innenabstand für besseren Komfort */
    font-size: 16px; /* Schriftgröße für bessere Lesbarkeit */
    border: 2px solid #3498db; /* Blauer Rand */
    border-radius: 5px; /* Abgerundete Ecken */
    background-color: #f0f8ff; /* Heller Hintergrund */
    color: #333; /* Dunkle Schriftfarbe für bessere Lesbarkeit */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Sanfte Schattierung für Tiefe */
    transition: border-color 0.3s, box-shadow 0.3s; /* Sanfte Übergänge bei Hover */
}

/* Stil beim Hover-Effekt */
.cssdesign:hover {
    border-color: #2980b9; /* Dunklerer Rand bei Hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Stärkere Schattierung bei Hover */
}

/* Stil beim Fokus (wenn das Feld ausgewählt ist) */
.cssdesign:focus {
    border-color: #1abc9c; /* Grüne Farbe bei Fokus */
    outline: none; /* Keine Standard-Fokusrahmen */
    box-shadow: 0 0 8px rgba(26, 188, 156, 0.5); /* Sanfte Schattierung um das Feld */
}