/* Put your custom CSS here */
.ui-page { 
    background:#2b2e31;
}

table {
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed; /* Verhindert automatische Spaltenverbreiterung */
}

th, td {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
}

tr:nth-child(even) {
	background-color: rgba(203, 58, 207, 0.3);
}

tth:nth-child(even), td:nth-child(even) {
	background-color: rgba(203, 0, 207, 0.5);
}

tr:hover {
	background-color: rgba(82, 0, 207, 0.5);
}
