body 
{
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: #e0e0e0;
    margin: 0;
    line-height: 1.6;
}

header, footer 
{
    background-color: #333;
    text-align: center;
    padding: 20px;
}

header h1 a 
{
    text-decoration: none;
    color: gold;
}

nav ul 
{
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a 
{
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover
{
    color: gold;
}

main 
{
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background-color: #2b2b2b;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

form label 
{
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input, form select
{
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #555;
    background-color: #444;
    color: white;
    border-radius: 4px;
}

button 
{
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover 
{
    background-color: #0056b3;
}

#userMenu 
{
    margin-top: 10px;
}

