body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f0f0f0;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 50px;
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.menu a {
    color: #333;
    text-decoration: none;
    padding: 10px 15px;
}

.menu a:hover {
    background-color: #ddd;
    color: black;
    border-radius: 4px;
}

.auth {
    display: flex;
    align-items: center;
}

.auth span {
    color: #333;
    margin-right: 10px;
}

.content {
    margin-top: 100px; /* Adjust margin to fit content below header */
    padding: 20px;
}

.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Responsive Design */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        gap: 0;
        display: none; /* Hide menu by default on small screens */
    }

    .menu a {
        padding: 10px 20px;
        width: 100%;
        text-align: center;
    }

    .menu-active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}
