/* src/frontend/static/css/header.css */

header {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding: 20px;
    background: var(--panel);
    flex-wrap:wrap;
    border-radius: 12px;
}
.header-left, .header-center, .header-right {
    display:flex;
    align-items:center;
    gap:12px;
}

/* nav links (Изображения / Видео) */
.top-nav { 
    display:flex; 
    gap:12px; 
    align-items:center; 
    color:var(--muted); 
    font-weight:600; 
}
.top-nav a { 
    color:var(--muted); 
    text-decoration:none; 
    padding:10px 20px; 
    border-radius:12px; 
}
.top-nav a.active { 
    background: var(--border-weak); 
    color:var(--muted); 
}

/* login button */
.btn-login {
    background: var(--accent);
    color: #111111;
    border: 1px solid rgba(214,255,63,0.18);
    padding:10px 20px;
    border-radius:12px;
    font-weight:700;
    cursor:pointer;
}

/* .brand */
.brand {
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:700;
    font-size:20px;
}
.brand-logo {
    width:40px;
    height:40px;
    object-fit:contain;
    display:inline-block;
}
.brand-title {
    color: var(--text);
    line-height:1;
    font-weight:700;
    font-size:20px;
}
.search-icon {
    width: 18px;
    height: 18px;
    opacity: 0.85;
    display: inline-block;
    flex: 0 0 auto;
}