/* Schrift f�r die Tabelle */
.custom-table-2025 {
    font-family: 'Roboto Slab', serif;
    border-collapse: collapse;

}

/* Vertikale Linien entfernen */
.no-vertical td,
.no-vertical th {
    border-left: none !important;
    border-right: none !important;
}

/* Erste Zeile (2025) mit gew�nschtem Rot und wei�er Schrift */
.custom-table-2025 .header-year {
    /*background-color: #ff0103 !important;*/
    /*background: linear-gradient(
        90deg,
        #c90000,
        #ff0103,
        #c90000
    ) !important;*/
    background: linear-gradient(
        to bottom,
        #fc7878 0%,
        #ff0103 50%,
        #cc0000 100%
    );
    color: white !important;
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 10px;
    border-top: 2px solid #ff0103;
    border-bottom: 2px solid #ff0103;
}

.custom-table-2025 .footer-year {
    background-color: #7f888f !important;
    /*background: linear-gradient(
        90deg,
        #c90000,
        #ff0103,
        #c90000
    ) !important;*/
    /* background: linear-gradient(
        to bottom,
        #ff4d4d 0%,
        #ff0103 50%,
        #f505b9 100%
    ); */
    color: white !important;
    text-align: center;
    font-size: 14px;
    font-weight: 50;
    letter-spacing: 1px;
    border-top: 2px solid #ff0103;
    border-bottom: 2px solid #ff0103;
}

/* Spaltenueberschriften */
.custom-table-2025 .header-columns {
    background-color: #f2f2f2;
    font-weight: 700;
    border-top: 2px solid #ff0103;
    border-bottom: 2px solid #ff0103;
}

/* Schwarze Umrandung der Tabelle */
.custom-table-2025 {
    border: 4px solid #000000; /* Schwarze Umrandung */
    border-collapse: collapse; /* Verhindert doppelte Rahmen */
}

/* Alternierende horizontale Linien mit deinem Grau und Rot */
.custom-table-2025 tbody tr:nth-child(odd) {
    border-top: 2px solid #7f888f;
    border-bottom: 2px solid #7f888f;
}

.custom-table-2025 tbody tr:nth-child(even) {
    border-top: 2px solid #ff0103;
    border-bottom: 2px solid #ff0103;
}

.custom-table-2025 tbody tr.highlight-row {
    background-color: #4a4a4a;
    color: white;
}

/* Zellabstand und Zeilenh�he */
.custom-table-2025 td,
.custom-table-2025 th {
    padding: 10px 8px;
    vertical-align: middle;
}

/* �berschrift-Bereich */
.heading-row {
    margin-bottom: 40px;
}

/* Bilder */
.heading-image {
    height: 150px;
    object-fit: contain;
}

.footing-image {
    height: 60px;
    object-fit: contain;
    margin-right: 50px;
    margin-left: 50px;
}

/* Gesamter Titel */
.heading-title {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 2rem;
    margin: 0;
    text-align: center;
    line-height: 1.2;
}

/* Farbteile */
.heading-grey {
    font-family: 'Roboto Slab', serif;
    font-size: 2rem;
    color: #7f888f;
    /* white-space: nowrap;
    text-wrap: nowrap; */
}

.heading-black {
    font-family: 'Roboto Slab', serif;
    font-size: 2rem;
    color: #000000;
    white-space: nowrap;
    text-wrap: nowrap;
}

.termin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px;
    white-space: nowrap;
}

.header-logo {
    height: 160px;
    flex-shrink: 0;
    white-space: nowrap;
}

.termin-header-title {
    font-family: 'Roboto Slab', serif;
    font-size: 4rem;
    font-weight: 600;
    text-align: center;
    flex: 1;
    white-space: nowrap;
    text-wrap: nowrap;
}

.title-grey {
    font-weight: 700;
    white-space: nowrap;
    font-family: 'Roboto Slab', serif;
    font-size: 3rem;
    color: #7f888f;
}

.title-black {
    color: #000;
    font-weight: 700;
    white-space: nowrap;
    font-family: 'Roboto Slab', serif;
    font-size: 3rem;
}


/* #termineTable a:hover,
#termineTable a:visited,
#termineTable a:active {
    color: inherit;
    text-decoration: underline;
} */
#termineTable a {
    color: inherit;          /* 🔑 übernimmt Textfarbe der Zelle */
    text-decoration: none;   /* optional: keine Unterstreichung */
}

