.slab-topbar {
    height: 72px;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(59,130,246,.15);

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 24px;

    position: sticky;
    top: 0;
    z-index: 100;
}

/*
|--------------------------------------------------------------------------
| LEFT
|--------------------------------------------------------------------------
*/

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

.slab-topbar-left h1 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

/*
|--------------------------------------------------------------------------
| RIGHT
|--------------------------------------------------------------------------
*/

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

/*
|--------------------------------------------------------------------------
| USER CHIP
|--------------------------------------------------------------------------
*/

.slab-user-chip {
    display: flex;
    align-items: center;
    gap: 12px;

    background: rgba(255,255,255,.03);

    border: 1px solid rgba(59,130,246,.15);

    padding: 8px 14px;

    border-radius: 14px;
}

.slab-user-avatar {
    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;
    font-weight: 700;
    color: #fff;

    box-shadow:
        0 0 20px rgba(37,99,235,.35);
}

.slab-user-chip strong {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
}

.slab-user-chip span {
    display: block;
    color: #94a3b8;
    font-size: 12px;
    margin-top: 2px;
}

/*
|--------------------------------------------------------------------------
| BUTTON
|--------------------------------------------------------------------------
*/

.slab-btn {
    border: none;
    outline: none;

    background: linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );

    color: #fff;

    padding: 10px 16px;

    border-radius: 12px;

    cursor: pointer;

    font-size: 13px;
    font-weight: 600;

    transition: .25s ease;

    box-shadow:
        0 10px 25px rgba(37,99,235,.25);
}

.slab-btn:hover {
    transform: translateY(-1px);

    box-shadow:
        0 14px 30px rgba(37,99,235,.35);
}

/*
|--------------------------------------------------------------------------
| MOBILE
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {

    .slab-topbar {
        padding: 0 16px;
    }

    .slab-user-chip {
        padding: 6px 10px;
    }

    .slab-user-chip span {
        display: none;
    }

    .slab-btn {
        padding: 9px 12px;
        font-size: 12px;
    }
}