* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body {
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f0f2f5;
}
nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
nav a {
    text-decoration: none;
    margin-right: 1.5rem;
    font-weight: bold;
}
nav a:hover {
    text-decoration: underline;
}
.container {
    background: white;
    padding: 2rem;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
}
#home {
    width: 500px;
}
h2 {
    margin-bottom: 1.5rem;
    text-align: center;
}
hr {
    margin-bottom: 1.5rem;
}
.form-group {
    margin-bottom: 1rem;
}
label {
    display: block;
    margin-bottom: 0.5rem;
}
input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
button {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    font-size: 1rem;
    cursor: pointer;
}
button:hover {
    background-color: #0056b3;
}
a {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: #007bff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
#admin-container {
    width: 1000px;
}
table, th, td {
    width: 100%;
    border: 1px solid #000000;
    border-collapse: collapse;
}
th, td {
    padding: 0.5rem;
    text-align: left;
}
.admin-user {
    padding: 2rem;
}