/* header.css */
.header {
    height: 70px;
    background-color: #fff;
    color: #464646;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 24px;
    padding: 0 20px;
    overflow: visible;
}

a.logo {
    height: 60px;
}

.header img {
    height: 60px;
}

.header a {
    text-decoration: none;
    display: inline-flex; /* This ensures the link doesn't take up more space than the image */
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

/* Login Button */
.login-button {
    background-color: transparent;
    border: none;
    color: #464646;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    justify-content: center;
    height: 70px;
}

.login-button i {
    font-size: 20px;
}

.login-button span {
    font-size: 12px;
    margin-top: 3px;
}

/* Log Out Button*/
.login-button.logout {
    color: #d9534f;
}

.login-button.logout:hover {
    color: #c9302c;
}

/* Hamburger Icon */
.nav-button {
    background-color: transparent;
    border: none;
    color: #464646;
    display: block;
    font-size: 20px;
    cursor: pointer;
}

@media (min-width: 769px) {
    .nav-button {
        display: none; /* Hide hamburger icon on larger screens */
    }
}