.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    background-color: var(--primary);
    color: white;
    z-index: 100;
    display: flex;
    align-items: center;
}

.navbar-inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 12px;
    display: flex;
    align-items: center;
}

.navbar-brand {
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-decoration: none;
}
