/* assets/style/topbar.css */
.brand#topBrand{
    flex: 1;
    background: var(--gold);
    border: none !important;
    border-radius: 18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    padding: 10px 0;
    backdrop-filter: blur(12px);
}

.brand b{ letter-spacing: .4px; }

.brand#topBrand .logo{
    width: 80px;
}

.topLeft{
    display:flex;
    align-items:center;
    gap:10px;
    min-width:0;
}

.topAvatar{
    width: 42px;
    height: 42px;
    border-radius: 16px;
    object-fit: cover;
    background: rgba(255,255,255,.25);
    border: 1px solid rgba(11,15,25,.10);
}

.topHello{
    display:flex;
    flex-direction:column;
    line-height:1.05;
    min-width:0;
}

.topHi{
    font-weight: 1000;
    letter-spacing:.2px;
    font-size: 14px;
    color:#111;
    white-space: nowrap;
    overflow:hidden;
    text-overflow: ellipsis;
}

.topSub{
    font-size: 12px;
    opacity: .85;
    color:#111;
    margin-top: 3px;
    white-space: nowrap;
    overflow:hidden;
    text-overflow: ellipsis;
}

.topAction{
    width: 42px;
    height: 42px;
    border-radius: 16px;
    border: 1px solid rgba(11,15,25,.16);
    background: rgba(255,255,255,.25);
    color:#111;
    cursor:pointer;
    display:grid;
    place-items:center;
    font-size: 18px;
}
.topAction:active{ transform: translateY(1px); }

.topPills{
    display:flex;
    gap:10px;
    align-items:center;
}

#clockPill{
    background: rgba(11,15,25,.35);
    border-color: rgba(255,255,255,.12);
    font-weight: 950;
}