.header {
    background: var(--header-bg, #131e35);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.auburn-link {
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.auburn-link:hover {
    opacity: 1;
    transform: none;
}

.auburn-logo {
    max-height: 40px;
}

.auburn-title-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    position: relative;
}

.auburn-title-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.auburn-link:hover .auburn-title-text::after {
    width: 100%;
}

.header-divider {
    height: 28px;
    width: 2px;
    background-color: rgba(255,255,255,0.2);
    margin: 0 0.5rem;
}

.oit-tag {
    color: rgba(255,255,255,0.95);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.subheader {
    background-color: #dd550c;
    color: white;
    padding: 0.9rem 2.5rem;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(221,85,12,0.2);
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    color: white;
}

.dashboard-title span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.qlik-logo {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.dashboard-home-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.08);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1.5rem;
}

.dashboard-home-link:hover {
    background: rgba(255,255,255,0.12);
    color: white;
    transform: translateY(-1px);
}

.dashboard-home-link i {
    font-size: 0.9rem;
}

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