/* Header - LogicLine Blue - Matching ImageFinder */
.header {
    background-color: #00599B;
    border-bottom: none;
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: auto;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.header-title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 400;
    color: white;
    font-family: 'Roboto Slab', serif;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user-info {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 400;
}

.logout-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    transition: all 0.25s ease-out;
}

.logout-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.powered-by {
    display: none; /* Hide this for cleaner look */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-content {
        padding: 0 1rem;
    }
    
    .header-title {
        font-size: 1rem;
    }
    
    .header-logo {
        width: 20px;
        height: 20px;
    }
}

/* Main content adjustment */
.main-content {
    min-height: calc(100vh - 100px);
    background-color: #f5f5f5;
}

/* Footer to match */
.footer {
    background-color: #00599B;
    border-top: none;
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.footer p {
    margin: 0;
}