/* ============================================================================
   Mobile Header Styles
   - Fixed mobile header with logo and menu button
   - Mobile header layout and positioning
   ============================================================================ */

/* Mobile Header Styles */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: rgba(15, 23, 34, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
    display: none;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 0 20px;
    z-index: 998;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .mobile-header {
        display: flex;
    }
}

.mobile-header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.mobile-header-title {
    font-size: 1.2em;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-menu-button {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(102, 126, 234, 0.3);
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-menu-button svg {
    width: 24px;
    height: 24px;
    color: #f1f5f9;
}

.mobile-menu-button:active {
    background: rgba(102, 126, 234, 0.2);
    transform: scale(0.95);
}
