.header-main{
    background: #fff;
    border-bottom: 1px solid var(--border);
}
.header-main .container{
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.logo img{
    max-width:180px;
    height:auto;
}
.search-box{
    flex: 1;
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 50px;
    overflow: hidden;
    max-width:700px;
    width:100%;
}
.search-box input{
    flex: 1;
    padding: 15px 20px;
    background: none;
    height:60px;
}
.search-box button{
    width: 60px;
    background: var(--primary);
    color: white;
    height: 60px;
}
.header-actions{
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink:0;
}
.auth-links{
    display: flex;
    align-items: center;
    gap: 20px;
}
.auth-username{
    font-weight: 600;
    color: var(--primary);
}
.logout-btn{
    color: var(--danger);
    font-weight: 500;
    cursor: pointer;
}
.logout-btn:hover{
    text-decoration: underline;
}
.navbar{
    background: white;
    height:70px;
    display:flex;
    align-items:center;
}
.navbar ul{
    display: flex;
    align-items: center;
    gap: 40px;
    height: 70px;
}
.navbar a{
    transition: .3s;
    font-weight: 500;
}
.navbar a:hover{
    color: var(--primary);
}
.nav-list{
    display:flex;
    align-items:center;
    gap:45px;
}