.dash-header{
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    height: var(--dash-header-height);
}

.dash-header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 100%;
}

.dash-header-left{
    display: flex;
    align-items: center;
    gap: 14px;
}

.dash-header-right{
    display: flex;
    align-items: center;
}

.dash-header-brand{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.dash-header-logo{
    height: 40px;
    width: auto;
}

.dash-header-name{
    font-family: "Space Grotesk", "Noto Sans", sans-serif;
    font-weight: 600;
    color: var(--fipi-primary);
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.dash-header-toggle{
    border: none;
    background: transparent;
    color: var(--fipi-primary);
    width: 34px;
    height: 34px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(31, 31, 75, 0.16);
}

.dash-header-settings{
    width: 34px;
    height: 34px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--fipi-primary);
    text-decoration: none;
    transition: background 0.2s ease;
}

.dash-header-settings:hover{
    background: rgba(31, 31, 75, 0.08);
    color: var(--fipi-primary);
}

@media (max-width: 767px){
    .dash-header-inner{
        padding: 0 16px;
    }
}
