styles.css

/* Stil für die Modtabelle */
.lpnon-mod-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background-color: #fef4f4; /* Heller Komplementärton zu #cf001b */
    border: 1px solid #cf001b; /* Rahmen in Hauptfarbe */
    border-radius: 8px;
}

/* Kopfzeile der Tabelle */
.lpnon-mod-table th {
    background-color: #f9e8e8; /* Heller Ton für die Kopfzeile */
    color: #cf001b; /* Text in Hauptfarbe */
    font-weight: bold;
    text-align: left;
    border: 1px solid #cf001b; /* Akzentlinie */
    padding: 10px;
}

/* Zellen der Tabelle */
.lpnon-mod-table td {
    border: 1px solid #cf001b;
    padding: 10px;
    background-color: #ffffff; /* Weiß als Standardhintergrund */
    color: #333;
}

/* Abwechselnde Zeilenfarben */
.lpnon-mod-table tr:nth-child(even) td {
    background-color: #f9f9f9;
}

.lpnon-mod-table tr:nth-child(odd) td {
    background-color: #ffffff;
}

/* Hover-Effekt für Zeilen */
.lpnon-mod-table tr:hover td {
    background-color: #fce8e8; /* Dezenter Hover-Effekt */
}

/* Links innerhalb der Tabelle */
.lpnon-mod-table a {
    color: #cf001b;
    text-decoration: none;
}

.lpnon-mod-table a:hover {
    text-decoration: underline;
}