body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #ff6600;
    color: #fff;
    padding: 10px 0;
}

nav .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav .menu li {
    margin: 0 15px;
}

nav .menu a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}

nav .menu .dropdown {
    position: relative;
}

nav .menu .dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    z-index: 1;
}

nav .menu .dropdown-content a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

nav .menu .dropdown-content a:hover {
    background-color: #ff6600;
}

nav .menu .dropdown:hover .dropdown-content {
    display: block;
}

main {

}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 3px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    height: 50px;
}

/* Apply the same style as the menu links to the logout button */
nav .menu .logout-btn {
    background: none;
    border: none;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    cursor: pointer;
    font: inherit;
}

nav .menu .logout-btn:hover {
    background-color: #ff6600; /* Same hover effect as the dropdown links */
}

/* Ensure the logout button aligns with other menu items */
nav .menu form {
    display: inline-block;
    margin: 0;
}

