body {
    font-family: 'Comic Sans MS',sans-serif;
    background-color: #f4f7fc;
    margin: 0;
	padding: 0px 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}

.container {
	margin-top: 10px;
    width: 80%;
    max-width: 1000px;
    background-color: #fff;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    text-align: center;
}

h1 {
    color: #4CAF50;
}

table {
    width: 100%;
    margin-top: 10px;
    border-collapse: collapse;
}

th, td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

th {
    background-color: #4CAF50;
    color: white;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #ddd;
}

a {
    text-decoration: none;
    color: #4CAF50;
}

a:hover {
    color: #333;
}

.user-level {
    margin-top: 10px;
    font-size: 16px;
    color: #888;
}

.logout-btn {
    margin-top: 20px;
    padding: 12px 20px;
    background-color: #f44336;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.logout-btn:hover {
    background-color: #e53935;
}

.footer {
    margin-top: 5px;
    font-size: 14px;
    color: #777;
}
