
body {
    background-color: #000;
    font-family: Arial, sans-serif;
    color: #fff;
    margin: 0;
    padding: 0;
}
.menu-container {
    background-color: #1a1a1a;
    border: 2px solid #444;
    width: 800px;
    margin: 20px auto;
}
.menu-table {
    width: 100%;
    border-collapse: collapse;
}
.menu-table td {
    text-align: center;
    padding: 10px 0;
    background-color: #2e2e2e;
    border-bottom: 1px solid #555;
}
.menu-table td:hover {
    background-color: #444;
}
.menu-table a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}
.menu-table a:hover {
    text-decoration: underline;
    color: #ffffff;
}
