.topbar {
    /*position: sticky;*/
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    color: #fff;
    background: #0074D9;
    border-bottom: 1px solid var(--border);
    gap: 12px;
}

.brand {
    position: absolute;
    display: flex;
    gap: 10px;
    align-items: center;
}

.brandText {
    text-align: left;
}

.logo {
    font-size: 22px;
}

.title {
    font-weight: 700;
    font-size: 18px;
    text-align: left;
}

.subtitle {
    font-size: 13px;
    opacity: .75;
    margin-top: 2px;
    text-align: left;
}

.topbarActions {
    margin-left: auto;
    /* pousse le bloc à droite */
    display: flex;
    gap: 8px;
    align-items: center;
}


.small {
    font-size: 12px;
    opacity: .8;
}