#tv-guide {
            width: 100%;
            margin: 20px auto;
            padding: 10px;
        }

        .spieltag {
            font-size: 20px;
            font-weight: bold;
            margin-top: 20px;
            padding: 5px 0;
            border-bottom: 2px solid #0073e6;
            color: #0073e6;
            text-align: left;
        }

        .spiel-container {
            display: grid;
            grid-template-columns: 1fr 3fr 2fr 2fr;
            gap: 8px; /* Verringerte Lücke zwischen den Spalten */
            padding: 8px 0; /* Weniger Padding für kleinere Zeilenhöhe */
            border-bottom: 1px solid #ddd;
            line-height: 1.4; /* Verringert den Abstand zwischen den Zeilen */
        }

        .spiel-links, .spielpaarung, .liga, .tv-sender {
            font-size: 16px;
            line-height: 1.4; /* Hier den Zeilenabstand verringern */
            text-align: left;
        }

        .competition-icon {
            height: 16px;
            width: auto;
            margin-right: 6px;
            vertical-align: middle;
            display: inline-block;
            margin-top: -2px; /* Feinjustierung */
        }


        .spielpaarung {
            font-size: 16px;
            font-weight: bold;
            color: #000;
            text-align: left;
        }

        .liga {
            font-size: 16px;
            color: #777;
            font-weight: normal;
            text-align: left;
        }

        .tv-sender {
            font-size: 12px; /* Noch kleinere Schriftgröße */
            text-align: left;
        }

        .tv-sender a {
            text-decoration: none;
            font-weight: normal;
            padding: 2px 5px; /* Weniger Padding für den Hintergrund */
            border-radius: 3px;
            display: inline-block;
            border: 1px solid white; /* Weiße Kontur */
        }

        .tv-sender a:hover {
            text-decoration: none;
        }

        /* Hintergrundfarben und Schriftfarben für die Sender 
        .sky {
            background-color: #0073e6;
            color: white;
        }

        .skyx {
            background-color: #7F00FF;
            color: white;
        }

        .dazn {
            background-color: #000000;
            color: white;
        }

        .erste {
            background-color: #003366;
            color: white;
        }

        .wow {
            background-color: #006f6f; 
            color: white;
        }

        .servustv {
            background-color: #d32f2f; 
            color: white;
        }

        .orf1 {
            background-color: #f1d119; 
            color: white;
        }

        .rtlplus {
            background-color: #0876d1;
            color: white;
        }

        .rtl {
            background-color: #cfdb1f;
            color: white;
        }

        .rtlnitro {
            background-color: #169c16;
            color: white;
        }

        .primevideo {
            background-color: #1db4f0;
            color: white;
        }

        .sportdigitalplus {
            background-color: #000000;
            color: white;
        }

        .orfsportplus {
            background-color: #f1d119;
            color: white;
        }
        .orfon          {
            background-color:#f1d119; 
            color: white;
        }

        .canalplus {
            background-color: #000000;
            color: white;
        }

        .sat1 {
            background-color: #1c3ed6;
            color: white;
        }

        .zdf {
            background-color: #000000;
            color: white;
        }

        .appletvplus {
            background-color: #000000;
            color: white;
        }

        .fcbayerntvplus {
            background-color: #e71616;
            color: white;
        }
 */
        /* Farben für alle anderen Sender */
        .default {
            background-color: #cccccc;
            color: white;
        }

        @media screen and (max-width: 600px) {
            .spiel-container {
                grid-template-columns: 0.2fr 1fr;
                gap: 0.2px;
            }

            .spiel-links, .spielpaarung, .liga, .tv-sender {
                font-size: 16px;
                text-align: left;
            }

            .spielpaarung, .liga, .tv-sender {
                grid-column: 2;
            }

            .liga, .tv-sender {
                margin-top: 3px;
            }

            .tv-sender {
                font-size: 11px; /* Hier die Schriftgröße verkleinern */
            }
        }



        .sender-logo {
    height: 20px;
    width: auto;
    margin-right: 5px;
    vertical-align: middle;
    display: inline-block;
}


.tv-sender a img {
    background: transparent !important;
}

.tv-sender a:has(span) {
    padding: 2px 5px;
}

