/* HEADER STICKY - FLAT BLUE */
.main-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: var(--brand-primary);
    z-index: 9999;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    height: 100%;
}

.main-header .logo img {
    width: 100px;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.back-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

/* LOGO KIRI */
.logo a {
    font-size: large;
    font-weight: bold;
    text-decoration: none;
}

/* AVATAR KANAN */
.header-user-right {
    display: flex;
    align-items: center;
}

.avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

/* ICON LOGIN (Kalo blm login) */
.btn-auth-white {
	display: flex;
	align-items: center;
    gap: 5px;
    padding: 8px 0;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.btn-auth-white .material-icons-outlined {
	vertical-align: middle;
}

.btn-auth-white .divider {
    background: #fff;
    width: 1px;
    height: 15px;
}