/* static/css/header.css */
.site-header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 40px;
    width: auto;
}

.text-content h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
}

@media (min-width: 768px) {
    .text-content h1 {
        font-size: 1.75rem;
    }
}

.text-content p {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #4B5563;
}

@media (max-width: 768px) {
    .text-content p {
        font-size: 0.75rem;
    }
}

.title-container a {
    text-decoration: none;
    color: inherit;
}