﻿:root {
    --scalar-custom-header-height: 50px;
}

.custom-header {
    height: var(--scalar-custom-header-height);
    background-color: var(--scalar-background-1);
    box-shadow: inset 0 -1px 0 var(--scalar-border-color);
    color: var(--scalar-color-1);
    font-size: var(--scalar-font-size-2);
    padding: 0 18px;
    position: sticky;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    top: 0;
    z-index: 100;
}

.custom-header h1 {
    margin: 0;
    line-height: 1;
    font-weight: 600;
}

.custom-header .biwee-logo {
    height: 28px;
    width: auto;
    display: block;
}