﻿body {
}
/* Apply styles for the departments table */
.departments-table {
    font-family: Arial, sans-serif;
    max-width: 600px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    color: #333;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f5f5f5;
    color: #333;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}
