.tg-header{
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    background: var(--tg-bg);
    border-bottom: 1px solid var(--tg-border);
}

.tg-header__brand{
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.tg-header__logo{ height: 28px; width: auto; }
.tg-header__title{ font-weight: 700; }

.tg-header__btn{
    border: 1px solid var(--tg-border);
    background: #fff;
    border-radius: 10px;
    padding: 8px 10px;
    cursor: pointer;
}
/* ===== Admin Login Button (Frontend Header) ===== */

.tg-header__adminBtn {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid var(--tg-border);
    background: #fff;
    color: var(--tg-text);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-right: 10px;
}

.tg-header__adminBtn:hover {
    background: color-mix(in srgb, var(--tg-primary) 10%, #fff);
    border-color: color-mix(in srgb, var(--tg-primary) 30%, #fff);
}
