/* General page styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f6fa;
    margin: 0;
    padding: 20px;
}

/* Title */
h1 {
    text-align: center;
    color: #2f3640;
}

/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Table header */
th {
    background-color: #273c75;
    color: white;
    padding: 10px;
    text-align: left;
}

/* Links in header */
th a {
    color: white;
    text-decoration: none;
}

th a:hover {
    text-decoration: underline;
}

/* Table rows */
td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

/* Zebra stripes */
tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Hover effect */
tr:hover {
    background-color: #dcdde1;
}

/* Links */
a {
    color: #2980b9;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Small labels like 'brak' */
td {
    color: #2f3640;
}