/* Custom Header Styles for Flutter Web App */
.custom-header {
    background-color: #2c3e50;
    color: white;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 100%;
}

.header-logo .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    transition: opacity 0.2s ease;
}

.header-logo .logo-link:hover {
    opacity: 0.8;
}

.logo-icon {
    font-size: 1.8rem;
    margin-right: 8px;
}

.logo-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.header-nav {
    display: flex;
    gap: 24px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ecf0f1;
}

/* Responsive design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 16px;
    }

    .header-nav {
        gap: 16px;
    }

    .nav-link {
        padding: 6px 12px;
        font-size: 0.9rem;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .logo-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header-nav {
        gap: 12px;
    }

    .nav-link {
        padding: 4px 8px;
        font-size: 0.85rem;
    }

    .logo-text {
        display: none;
        /* Hide text on very small screens */
    }

    .logo-icon {
        margin-right: 0;
        font-size: 1.8rem;
    }
}