body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background: linear-gradient(to bottom, #333333, #d4af37);
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
}

form {
    margin: 20px 0;
}

input, textarea {
    display: block;
    margin: 10px 0;
    padding: 5px;
    width: 300px;
}

button {
    padding: 5px 10px;
    background-color: #d4af37;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #b8972e;
}

table {
    border-collapse: collapse;
    width: 100%;
    max-width: 800px;
    margin: 20px 0;
}

table, th, td {
    border: 1px solid #ccc;
}

th, td {
    padding: 10px;
    text-align: left;
}

pre {
    background: #f0f0f0;
    padding: 10px;
    max-height: 300px;
    overflow-y: auto;
}

footer {
    background: linear-gradient(to top, #333333, #d4af37);
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}