.header {
    background-color: #fff;
    height: 50px;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0;
}

.header-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
}

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

.header-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.header-nav {
    display: flex;
    gap: 2rem;
}

.header-nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.header-nav a:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .header-title {
        font-size: 1rem;
    }
    
    .header-nav {
        gap: 1rem;
    }
}
