@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --accent: #246BCE;
    --accent-dim: #1a518f;
    --bg: #0b0d10;
    --surface: #12151a;
    --surface2: #1a1e26;
    --border: rgba(255,255,255,0.07);
    --text: #f0f2f5;
    --muted: #8891a0;
    --radius: 12px;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: transparent;
}

.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(11,13,16,0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.toolbar-left {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    stroke: var(--accent);
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    font-family: 'Syne', sans-serif;
}

.toolbar-center {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius);
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    font-family: 'DM Sans', sans-serif;
}

.nav-link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.nav-link:hover {
    color: var(--text);
    background: var(--surface2);
}

.nav-link.active {
    color: var(--text);
    background: var(--accent);
}

.nav-link.active svg {
    stroke: var(--text);
}

.badge {
    background: #e24b4a;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: var(--surface2);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name {
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
}

.logout-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.logout-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--muted);
}

.logout-btn:hover {
    background: var(--surface);
}

.logout-btn:hover svg {
    stroke: #e24b4a;
}
