/* Global styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

header {
    background: #f4f4f4;
    padding: 1rem;
    margin-bottom: 2rem;
}

nav a {
    margin-right: 1rem;
    text-decoration: none;
    color: #333;
}

/* Users table styles */
.users-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.users-table th,
.users-table td {
    padding: 0.5rem;
    border: 1px solid #ddd;
    text-align: left;
}

.users-table th {
    background-color: #f4f4f4;
}

.users-table tr:nth-child(even) {
    background-color: #f8f8f8;
}