/* General styling for the admin panel */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

h1 {
    margin-bottom: 20px;
}

/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

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

th {
    background-color: #f2f2f2;
}

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