body {
    font-family: sans-serif;
    margin: 20px;
    background-color: #f4f4f4;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #333;
    text-align: center;
}

button {
    display: block;
    width: 150px;
    padding: 10px;
    margin: 20px auto;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
}

button:hover {
    background-color: #0056b3;
}

.menu-item {
    display: block;
    padding: 10px 0;
    text-align: center;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.menu-item a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
}

.menu-item a:hover {
    color: #007bff;
}

.crud-options {
    text-align: center;
    margin-top: 20px;
}

.crud-options a {
    display: inline-block;
    padding: 8px 15px;
    margin: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    color: #555;
    background-color: #f9f9f9;
}

.crud-options a:hover {
    background-color: #eee;
}